Profile API

Influencer Profile API

Create audience data reports for influencer profiles on Instagram, TikTok, and YouTube. Returns structured profile and audience metrics.

POST /reports/new/

1Profile & audience reports

The POST /reports/new/ endpoint creates a new audience data report for a creator. Pass a username, user ID, or profile URL. Fetch the report later in JSON or white-label PDF format.

2Use this endpoint when you want to

  • Enrich CRM records with creator analytics
  • Display profile cards in your SaaS UI
  • Subscribe creators for ongoing data updates
  • Generate white-label PDF reports for clients

3Workflow

  1. Submit creator URL or user ID with platform
  2. API generates audience data report
  3. Receive report_id in response
  4. Fetch full report via analytics endpoint

4Returned data includes

  • Profile information (username, followers, bio)
  • Engagement and growth metrics
  • Audience demographics and interests
  • Report ID for subsequent fetches

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…