Search and filter influencers using structured parameters like category, followers, engagement rate, and platform. Part of the Influencify influencer discovery system.
Returns influencer profiles from a structured creator database based on niche, engagement, and audience size filters—designed for production discovery pipelines, not manual research.
{
"id": "creator_123",
"username": "fitness.creator",
"followers": 128400,
"engagement_rate": 3.9,
"category": "fitness",
"platform": "instagram"
}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
This endpoint is part of the influencer discovery system and allows developers to search creators using structured filters like category, follower count, engagement rate, and platform.
Use this endpoint to:
Request/response schemas from our OpenAPI spec — hosted on influencify.co (no external iframe).
Loading API reference…