Quickstart
By the end of this page, you’ll have searched for creators, fetched a full creator record, and inspected the usage headers on both requests.Install and configure
Install the SDK and set your API key as an environment variable.X-API-Key header.
For details on key management, scopes, and rotation, see the Authentication guide.
Search for creators
Search is the primary discovery endpoint. You pass a natural-language query describing the kind of creator you need, and the API returns ranked matches with scores and explanations. Thequery field accepts up to 500 characters of free text. The limit sets the maximum number of results for that .
Inspect the response
Here’s an abbreviated version of what comes back:creator— the canonical creator record. Theidis what you use to fetch full profiles and pass to other endpoints.relevant_profile— the profile most relevant to the query, ornullwhen no profile data is available.primary_profile— the creator’s largest profile, ornullwhen no profile data is available.match.score— a 0-to-1 relevance score. Higher means a closer fit to your query. Scores above 0.8 are typically strong matches.match.reasons— human-readable explanations of why the creator matched. Useful for displaying to end users or for your own review.
The API Reference is the source of truth for exact response shapes, required fields, and edge cases. The examples on this page are abbreviated for clarity.
Fetch a creator by ID
Use theid from a search result to pull the full creator record. Add ?include=profiles to expand linked social profiles in the same response, so you don’t need a separate call for each platform.
Check cost and remaining budget
Every response includes billing and rate-limit headers. After the search request above, you’d see something like:
The base fee covers the AI inference that runs on every query. The per-creator fee scales with how many results you actually receive.
With
limit: 5 and five results returned, that’s 25 + (5 x 2) = 35 credits, or $0.35. If the API only finds 3 matches, you’d pay 25 + (3 x 2) = 31 credits — you’re never charged for results that don’t exist.
The RateLimit-Remaining-* headers tell you how many rate-limit credits remain in the current window. Monitor these if you’re running batch searches.
See Pricing for full cost rules and Rate Limits & Tiers for current budgets by plan.
Next steps
Creators vs. Profiles
Understand the data model and when to use each resource
How Search Works
Query syntax, scoring, and how to get the best results
SDK Guide
Typed client setup, error handling, and pagination
API Reference
Full endpoint specs with generated examples for every route