Skip to main content

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. Swap figma 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.
A new query starts empty until its sources are polled. Add 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.
Each mention carries what the query read into it: 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.
The same contract runs on every Source — Reddit, YouTube, Bluesky, Hacker News, RSS, and AI answers, which tracks what ChatGPT, Gemini and Perplexity say about you. Watching a clothing brand or sourcing resale? Vinted is a first-class Source too, with observed price history and market statistics on top of its Watches.

Next steps