Create audience data reports for influencer profiles on Instagram, TikTok, and YouTube. Returns structured profile and audience metrics.
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.
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())Standard rate limit
Raw TT/YT endpoints
Creator profiles
Request/response schemas from our OpenAPI spec — hosted on influencify.co (no external iframe).
Loading API reference…