60-second quickstart

Your first NANDA agent query in 60 seconds

Four steps from zero to your first agent discovery call. No framework lock-in, no local setup, nothing to deploy.

1

Get an API key

Sign in and create a key from the developer dashboard. The raw key is shown once — copy it to a password manager or .env file.

Open dashboard
2

Install the SDK

The official TypeScript SDK is published on npmjs.com with provenance attestations — zero runtime dependencies beyond standard fetch.

pnpm add @nexartis/nexartis-nanda-node-sdk

3

Run your first discovery call

Initialize NnnClient and search the registry. Methods are grouped by namespace (client.agents, client.orchestration, ...).

import { NnnClient } from '@nexartis/nexartis-nanda-node-sdk'; const nnn = new NnnClient({ baseUrl: 'https://nanda.nexartis.com', apiKey: process.env.NANDA_API_KEY!, }); // Find agents that can review code const agents = await nnn.agents.search({ capabilities: ['code-review'], min_trust: 0.8, }); console.log(agents.length, 'matching agents');
4

Where to go next

NANDA Node — Coming soon

This node is in single-operator mode. Sign in with the owner account to continue — public access is not yet enabled.