Build with FAIR's
creator intelligence API

Three focused endpoints to search 150M+ creator profiles, run deep audience analysis, and pull content engagement data — all over a simple REST API.

Endpoints

Three endpoints. Everything you need.

All requests are authenticated with an API token in the Authorization header. Contact FAIR to get yours.

POST/fairservice/discovery
Creator Discovery
Search 150M+ creator profiles with 40+ filters — platform, follower range, engagement rate, audience demographics, location, interests, brand affinities, and more. Returns paginated results with full profile summaries.
Platform username & profile URL
Follower / subscriber count
Engagement rate & avg. likes/views
Audience demographics & location
Contact details
GET/fairservice/analyzer
Profile Analyzer
Deep-dive analysis for a single creator. Pass a username and platform, get back a full breakdown of their audience, content history, credibility score, lookalikes, and estimated post pricing.
Audience breakdown (age, gender, country, language)
Credibility score & follower type analysis
Top content, hashtags, and mentions
Estimated post pricing (reels, story, carousel)
Reputation history by month
POST/fairservice/public-content
Content Data
Pull engagement data for a creator's content by passing a profile URL or a specific content URL. Supports Instagram, TikTok, and YouTube.
Likes, comments, views, shares, saves
Reach & impression counts
Video duration & watch time
Thumbnail URL & publish date
Examples

See it in action

Replace <your_token> with your Bearer token.

curl -X POST https://stg.api.fair-indonesia.com/api/fairservice/discovery \
  -H "Authorization: <your_token>" \
  -H "Content-Type: application/json" \
  -d '{
    "platform": "instagram",
    "follower_count": { "min": 10000, "max": 500000 },
    "creator_gender": "FEMALE",
    "creator_language": { "code": "id" },
    "creator_location": ["Indonesia"],
    "engagement_rate": { "percentage_value": "3" },
    "sort_by": { "field": "FOLLOWER_COUNT", "order": "ASCENDING" },
    "limit": 10,
    "offset": 0
  }'

Ready to integrate?

Full request schemas and response examples in the interactive Swagger reference.