Analytics API

Influencer Analytics API

Fetch audience analytics reports, engagement metrics, and audience overlap data. Maps to Audience Data reports and overlap endpoints.

GET /reports/{report_id}/

1Audience analytics & overlap

Retrieve previously generated reports via GET /reports/{report_id}/ in JSON or PDF. Use overlap endpoints to compare shared audiences across multiple creators and prevent campaign cross-contamination.

2Use these endpoints when you want to

  • Display engagement and demographic charts
  • Export white-label PDF analytics for clients
  • Measure audience overlap between creators
  • Build lookalike and network analysis features

3Workflow

  1. Create profile report (profile endpoint)
  2. Fetch report by report_id with fmt=json or pdf
  3. Optionally call overlap endpoints for multi-creator analysis
  4. Integrate metrics into dashboards or automation

4Returned data includes

  • Engagement rate and follower growth
  • Audience geography, age, and gender splits
  • Brand affinity and credibility scores
  • Overlap percentages between creator pairs

Quick integration

Integrate in Minutes

import requests

url = "https://socapi.icu/v2.0/api/reports/new/"
headers = {
    "X-Api-Key": "YOUR_API_KEY",
    "Content-Type": "application/json",
}
payload = {
    "username": "creator_handle",
    "platform": "instagram",
}

response = requests.post(url, json=payload, headers=headers)
print(response.json())
10/s

Standard rate limit

100/s

Raw TT/YT endpoints

400M+

Creator profiles

Interactive API reference

Request/response schemas from our OpenAPI spec — hosted on influencify.co (no external iframe).

View full API →

Loading API reference…