Social Profiles Finder API
Find a person's or brand's profiles across major social networks from a single name, returned as normalized JSON.
Try it
Make your first request
{
"data": {
"items": [
{
"inputProfileName": "Example title",
"social": "example",
"socialProfileUrl": "https://example.com/page"
}
]
},
"found": true
}interface SocialFinderResponse {
data: {
items: {
inputProfileName?: string;
social: string;
socialProfileUrl: string | null;
}[];
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-16 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/social.finder \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"limit":3,"name":"Elon Musk"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| name | string | "Elon Musk"The profile name or handle to search for across social networks (e.g. johndoe). |
| limit | integer | 3Maximum number of results to return (1-10, default 10). You are billed per result returned, so a lower limit costs less. |
| platform | string | Limit the search to one network: askfm, discord, facebook, github, instagram, linkedin, medium, pinterest, steam, threads, tiktok, twitch, or youtube (e.g. instagram); all networks are searched when omitted. |
| Response | ||
| data | object | |
| data.items | object[] | Profile match records: the queried profile name, the social network, and the matching profile URL when one was found. Populated whenever the provider has data for the entity. |
| data.items[].inputProfileName | string | The name that was searched for. Populated whenever the provider has data for the entity. |
| data.items[].social | string | The social network checked (e.g. discord, facebook, github). Populated whenever the provider has data for the entity. |
| data.items[].socialProfileUrl | string | URL of the matching profile, or null when no account was found on that network. |
| found | boolean | |
| Price | ||
| Price per request (ceiling) | USD | $0.0231 |
| Price /1k results | USD | $2.31 |
FAQ
About the Social Profiles Finder API
The AnyAPI Social Profiles Finder API returns Social Profiles finder data as normalized JSON from one POST call to /v1/run/social.finder. Find a person's or brand's profiles across major social networks from a single name, returned as normalized JSON. AnyAPI returns one normalized schema whichever source serves it. It costs $2.31 per 1,000 results, and never more than $0.0231 for a single request, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 97.6% of Social Profiles finder calls through AnyAPI succeeded, with a median response time of 23.2 seconds across 42 measured calls.