Quickstart
By the end of this page, you’ll have searched for creators, fetched a full profile, and checked your usage. Three requests, and you’ll understand how the core API works.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 .
| Filter | Type | Description |
|---|---|---|
followers.min / followers.max | integer | Follower count range |
engagement_rate.min / engagement_rate.max | number | Engagement rate as percentage (2.0 = 2%) |
verified | boolean | Only verified accounts |
platforms (top-level) | string[] | Platforms to search, defaults to ["instagram"] |
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.primary_profile— the creator’s strongest social account for this query. A creator may have profiles on multiple platforms, but search surfaces the most relevant one.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:| Component | Cost |
|---|---|
| Base fee per search | 25 |
| Per creator delivered | 2 credits |
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 requests you have left 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