Facebook API

Facebook Followers API

List the public followers (or accounts followed) of any Facebook page or profile URL as normalized JSON records.

POST/v1/run/facebook.followers
Requests
-
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": [
      {
        "id": "a1b2c3d4",
        "image": "https://example.com/image.jpg",
        "name": "Example title",
        "url": "https://example.com/page"
      }
    ]
  },
  "found": true
}
Response interface
interface FacebookFollowersResponse {
  data: {
    items: {
      id: string;
      image?: string;
      name: string;
      url: string;
    }[];
  } | 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/facebook.followers
curl -X POST https://api.getanyapi.com/v1/run/facebook.followers \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":3,"url":"https://www.facebook.com/nike"}'
FieldTypeExample value
Request body
urlstring"https://www.facebook.com/nike"Facebook page or profile URL to list follows for (e.g. https://www.facebook.com/nasa).
followTypestringWhich relation to fetch: 'follower' or 'following' (e.g. follower).
limitinteger3Maximum number of results to return (1-20, default 20). You are billed per result returned, so a lower limit costs less.
Response
dataobject
data.itemsobject[]Follower or following records for the target page/profile. Populated whenever the provider has data for the entity.
data.items[].idstringThe account's numeric Facebook ID, as a string. Populated whenever the provider has data for the entity.
data.items[].imagestringURL of the account's profile picture, with tracking query params stripped. Empty when the upstream omits it.
data.items[].namestringThe account's public display name. Populated whenever the provider has data for the entity.
data.items[].urlstringCanonical URL of the account's Facebook profile, with tracking query params stripped. Populated whenever the provider has data for the entity.
foundbooleanWhether the page/profile was found and returned follower or following records.
Price
Price per request (ceiling)USD$0.132
Price /1k resultsUSD$6.60

FAQ

About the Facebook Followers API

The AnyAPI Facebook Followers API returns Facebook followers data as normalized JSON from one POST call to /v1/run/facebook.followers. List the public followers (or accounts followed) of any Facebook page or profile URL as normalized JSON records. AnyAPI returns one normalized schema whichever source serves it. It costs $6.60 per 1,000 results, and never more than $0.132 for a single request, in US dollars with no subscription and no monthly minimum.

It costs $6.60 per 1,000 results, and never more than $0.132 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.

List the public followers (or accounts followed) of any Facebook page or profile URL as normalized JSON records. 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.