1. Sign in to the dashboard
Open the Nephia dashboard and sign in with Google or a sign-in link. Your Account is provisioned automatically on first sign-in.2. Create an API key
Go to API Keys and create a key. Copy it immediately — it is shown only once.3. Create a query
A Query polls every Source you switch on, keeps what matches, and reads each mention for sentiment and intent. Swapfigma for your own brand.
Node.js SDK
curl
subjectRole says what the query is about: own for your own brand or product
(the default, and what every query written before this field reads as), competitor for
somebody else’s, topic for a problem or a category rather than a product. It changes
nothing about what gets polled — it is what a reply draft reads to decide whose voice it
writes in.Query bodies are camelCase, unlike the rest of this API. A query is the one object you
round-trip — read it, change a field, send it back — so its body is spelled the way its
response is. See Overview.
backfill: true to the body
above and each source is searched once immediately, at one tick per source, so the next
step answers with content straight away — see History & backfill.
4. Read the mentions
One read across every Source and every query on the Account, newest first. Free.sentiment, intent, your agent step’s
answer under agent, the marks a rule put on it, and — on
GET /v1/queries/{id}/results — the bucket it was sorted into.
Add a webhookUrl to the query and each match is delivered to your endpoint as it is
found instead of waiting to be polled — see Webhooks.
5. Or watch a single Source
A Watch is a query’s unit of polling, and you can create one directly when a whole query is more than you need.backfill gives it content straight away.
Next steps
- SDK (Node.js) — typed client,
mentionsandqueriesincluded - Authentication — key management and headers
- Credits — per-endpoint costs
- Limits — request quota and Watch entitlements per plan
- Sources — per-Source coverage and Watch criteria (Reddit, Youtube)
- Watches — subscribe to changes
- API Reference — full endpoint list