Quickstart
Get from signup to first API result in under 5 minutes.
- Sign up at
sonner.ai/get-a-demoand request access (or use an invite token at/invite). - Create an API key in the dashboard at
/dashboard/keys. Copy thesk_live_...value — it is shown once. - 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 }' - 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.