Build a Creator Shortlist
This recipe combines search, profile expansion, and campaign match scoring to produce a ranked shortlist of creators for a specific campaign. Three API calls, and you have a shortlist with fit scores and reasoning.The Flow
- Search for creators matching your criteria
- Score the candidates against your campaign brief
- Expand the top picks with full profile data
Step 1: Search for Candidates
Start broad. Search returns creators ranked by relevance to your query, so you want a large enough pool to filter down from.Step 2: Score Against Your Campaign Brief
Pass the candidate IDs to the match endpoint with your campaign details. Thequery field (up to 500 chars) describes the campaign, and context (up to 2,000 chars) adds background.
good, neutral, or avoid) and a numeric score. At 1 credit per creator scored, this adds 30 credits ($0.30).
Step 3: Filter and Rank
Pull out the strong fits and sort by score:Step 4: Expand Top Picks
For the creators you’re actually going to pitch, fetch full profiles with linked social accounts:Total Cost
| Step | Endpoint | Credits | Cost |
|---|---|---|---|
| Search (30 results) | POST /v1/search | 85 | $0.85 |
| Score (30 creators) | POST /v1/creators/match | 30 | $0.30 |
| Expand (10 creators) | GET /v1/creators/{id} | 1 | $0.01 |
| Total | 116 | $1.16 |
Tips
- Write a detailed campaign brief. The match endpoint uses an LLM to evaluate fit — more context in the
queryandcontextfields produces more accurate decisions. Don’t just write “fitness campaign.” - Search broad, score narrow. It’s cheaper to over-search and then filter with match scoring than to run multiple targeted searches.
- Cache creator lookups. If you’re building shortlists frequently for similar campaigns, the creator data doesn’t change often. Cache the Step 4 responses.
- Iterate on the query. If match scoring flags most candidates as
neutraloravoid, your search query may be too broad. Tighten the search, not the scoring threshold.