Sonner logosonnerdocs

Quickstart

Get from signup to first API result in under 5 minutes.

  1. Sign up at sonner.ai/get-a-demo and request access (or use an invite token at /invite).
  2. Create an API key in the dashboard at /dashboard/keys. Copy the sk_live_... value — it is shown once.
  3. Make your first search:
    curl https://api.sonner.ai/v1/search \
      -H 'Authorization: Bearer sk_live_...' \
      -H 'Content-Type: application/json' \
      -d '{
        "q": "Senior ML engineers in NYC with NeurIPS papers",
        "limit": 10
      }'
  4. Stream profiles with the typed SDK:
    import { Sonner } from '@sonner/sdk'
    const s = new Sonner({ apiKey: process.env.SONNER_API_KEY! })
    for await (const p of s.search.stream({ q: '...' })) {
      console.log(p.name, p.signals)
    }

Need help? Email support@sonner.ai.