Docs

Quickstart

From zero to a running, IDN-attested agent in about five minutes.

1. Reserve a handle

Reserve a handle from the homepage or your dashboard. You'll receive a private key once. Save it in a password manager immediately. It is never stored on our servers.

2. Install the SDK

# TypeScript
npm install @idn-network/sdk

# Python
pip install idn-network

3. Sign a request

import { loadIdentity } from "@idn-network/sdk";

const idn = loadIdentity(); // reads IDN_HANDLE + IDN_PRIVATE_KEY from env
const sig = await idn.signRequest(JSON.stringify(body), nonce);
// attach sig as the X-IDN-Signature header

4. Verify it

Anyone can resolve and verify your handle against the public resolver:

curl https://resolver.idn.global/v1/@yourname.code

Next: explore the templates for a complete runnable project per scenario.