Social Profiles API

Social Profiles Finder API

Find a person's or brand's profiles across major social networks from a single name, returned as normalized JSON.

POST/v1/run/social.finder
Uptime
97.62%
30d · 42 calls
Requests
49
30d · weekly, last 12 wks
Response
23.2s
median · 30d

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "items": [
      {
        "inputProfileName": "Example title",
        "social": "example",
        "socialProfileUrl": "https://example.com/page"
      }
    ]
  },
  "found": true
}
Response interface
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 30d
POST /v1/run/social.finder
curl -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"}'
FieldTypeExample value
Request body
namestring"Elon Musk"The profile name or handle to search for across social networks (e.g. johndoe).
limitinteger3Maximum number of results to return (1-10, default 10). You are billed per result returned, so a lower limit costs less.
platformstringLimit 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
dataobject
data.itemsobject[]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[].inputProfileNamestringThe name that was searched for. Populated whenever the provider has data for the entity.
data.items[].socialstringThe social network checked (e.g. discord, facebook, github). Populated whenever the provider has data for the entity.
data.items[].socialProfileUrlstringURL of the matching profile, or null when no account was found on that network.
foundboolean
Price
Price per request (ceiling)USD$0.0231
Price /1k resultsUSD$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.

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. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Find a person's or brand's profiles across major social networks from a single name, returned as normalized JSON. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

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. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.