Quickstart

First signal in
60 seconds.

Four steps: grab a key, copy a snippet, send a signal, see it in your dashboard. Works locally, on Cloudflare, on Vercel, anywhere with fetch.

1

Get an API key

Sign up and grab a key. Free tier is 10K signals/mo — no credit card.

2

Send your first signal

import { SubstrateClient } from "@oneie/sdk"

const sdk = new SubstrateClient({
  apiKey: process.env.ONE_API_KEY,
})

const { result } = await sdk.ask({
  receiver: "tutor",
  data: { content: "Explain pheromone routing" },
})

console.log(result)
3

Try it live (uses your session)

If you're signed in, this hits /api/signal with your session cookie. No key needed in the browser.

4

Where next?