Creators vs Profiles
The API separates the person from their social accounts. Understanding this split helps you pick the right endpoint and avoid redundant lookups.- A creator is the person or brand.
- A profile is one social account on one platform.
Which Endpoint to Use
| You know… | Use… | Why |
|---|---|---|
| A search idea | POST /v1/search | Find creators across platforms |
| One exact social account | GET /v1/profiles/{platform}/{username} | Resolve a known profile |
| Many exact social accounts | POST /v1/profiles/lookup | Batch known platform + username pairs |
| A creator ID | GET /v1/creators/{id} | Fetch the creator record |
| A creator ID and want linked profiles too | GET /v1/creators/{id}?include=profiles | Expand a creator into linked accounts |
Typical Workflow
If you start from a known username:- Call
GET /v1/profiles/{platform}/{username}orPOST /v1/profiles/lookup. - Read the returned
creator_id. - Call
GET /v1/creators/{id}?include=profilesto see the creator and all their linked accounts together.
- Call
POST /v1/search. - Pick a creator from the response.
- Call
GET /v1/creators/{id}?include=profilesto get the full picture.
Why the Split Exists
Creators and profiles answer different questions.| Question | Object |
|---|---|
| ”Who is this person or brand?” | Creator |
| ”What is their Instagram username?” | Profile |
| ”What platforms are linked to this creator?” | Creator with profiles |
| ”Does this exact account exist?” | Profile |
Common Patterns
Search and then expand
UsePOST /v1/search to find relevant creators, then open one by ID when you want more detail. This keeps the search response lightweight while still giving you a path to full creator data.
Verify a single account
UseGET /v1/profiles/{platform}/{username} when you already know the platform and username. This is the fastest way to check whether an account exists in the system and grab its creator_id.
Batch known accounts
UsePOST /v1/profiles/lookup when you have a list of accounts to resolve. This saves you from making individual profile requests and returns all the creator_id mappings in one call.