Developer API
Creator intelligence as a service
Nine scoped, credit-metered endpoints let agencies and product teams build Zaver’s creator brain into their own tools — dashboards, client portals, internal CRMs.
- POST /discover — natural-language creator search
- POST /analyzer, /insights, /profile-insights — AI analysis and reports
- POST /engagement, /followers, /username, /track + GET /jobs/:id
One API, the whole insights stack
Everything the Zaver platform computes is reachable programmatically: discovery with AI relevance ranking, per-profile analytics, audience insights, engagement analysis, and enrichment. Long-running analyses return async jobs you poll.
Quick start
Authenticate with an org-scoped bearer key from Settings → Developer:
curl -X POST https://api.zaver.one/discover \
-H "Authorization: Bearer $ZAVER_API_KEY" \
-d '{
"query": "clean-beauty creators in LA, 50k-200k followers",
"limit": 25
}'Pricing that maps to usage
Every call meters from your workspace credit pool with idempotency keys, so retries never double-bill and finance sees one predictable line item. Granular scopes keep each integration key limited to exactly the endpoints it needs.
Frequently asked questions
How do I get an API key?
Sign up (free 30-day trial), then create org-scoped keys self-serve under Settings → Developer — docs with cURL examples live there too.
What does the API cost?
Calls meter from the same credit pool as the platform; plans start at $99/month. Trial credits are enough to build and test an integration.
Is there a rate limit?
Per-workspace concurrency and daily caps apply, and heavy analyses run as async jobs — poll GET /jobs/:id for results.
REST or GraphQL?
REST with JSON responses and async job polling.