DISCOVERY ENDPOINT: Look up social account data when you know a username and platform.
🎯 When to use this endpoint:
❌ When NOT to use this endpoint:
/v1/creators/{id}/profiles instead)/v1/creators/{id}/profiles instead)📊 Response Format:
Returns SocialAccountLite or SocialAccountDetailed objects with identical structure to /v1/creators/{id}/profiles.
Both endpoints return the same data structure for consistency.
🔗 Data Relationships:
creator_profile_id field to fetch creator-level data via /v1/creatorscreator_profile_id to get all social accounts via /v1/creators/{id}/profiles🔄 Typical Workflow:
/v1/profiles with username+platform → get social account data + creator_profile_id/v1/creators with creator_profile_id → get creator-level data/v1/creators/{id}/profiles with creator_profile_id → get all social accounts for that creator⚙️ Parameters:
mode: lite (default) or detailed - controls response detail levelplatforms: Array of platform names to filter results (e.g., ["instagram", "tiktok"])
Pricing: 0.01-0.05 credits per profile (lite/detailed mode)API key for authentication
1 - 100 elements[
{
"platform": "instagram",
"username": "fitness_guru"
},
{
"platform": "tiktok",
"username": "fitness_guru"
}
]Response detail level - lite for basic fields, detailed for additional metrics
lite, detailed Filter results to only include these platforms
instagram, tiktok ["instagram", "tiktok"]Profile information with all data and recent posts
Array of social account objects. The structure depends on the mode parameter:
mode: "lite": Returns SocialAccountLite objectsmode: "detailed": Returns SocialAccountDetailed objects with additional fieldsBasic social account information returned in lite mode