Facebook API

Facebook Event details API

Fetch full details for a single Facebook event by ID or URL (name, schedule, venue, hosts, and attendance) as normalized JSON.

POST/v1/run/facebook.event_details
Requests
-
30d

Pricing

One price, in dollars

Providers
Giraffe- served- uptime- p50$1.20/1k reqflat

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": {
    "city": "San Francisco",
    "coverPhotoUrl": "https://example.com/image.jpg",
    "dayTimeSentence": "2024-01-15T09:30:00Z",
    "description": "A short example description of this item.",
    "endTime": "2024-01-15T09:30:00Z",
    "goingCount": 12500,
    "id": "a1b2c3d4",
    "interestedCount": 12500,
    "isCanceled": true,
    "isOnline": true,
    "locationName": "Example title",
    "name": "Example title",
    "startTime": "2024-01-15T09:30:00Z",
    "url": "https://example.com/page"
  },
  "found": true
}
Response interface
interface FacebookEventDetailsResponse {
  data: {
    city: string;
    coverPhotoUrl: string;
    dayTimeSentence: string;
    description: string;
    endTime: string;
    goingCount: number;
    id: string;
    interestedCount: number;
    isCanceled: boolean;
    isOnline: boolean;
    locationName: string;
    name: string;
    startTime: 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.event_details
curl -X POST https://api.getanyapi.com/v1/run/facebook.event_details \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"id":"4045709448982422"}'
FieldTypeExample value
Request body
idstring"4045709448982422"The event's numeric identifier.
urlstringThe event's Facebook URL.
Response
dataobject
data.citystringPopulated whenever the provider has data for the entity.
data.coverPhotoUrlstringPopulated whenever the provider has data for the entity.
data.dayTimeSentencestringPopulated whenever the provider has data for the entity.
data.descriptionstringPopulated whenever the provider has data for the entity.
data.endTimestring
data.goingCountinteger
data.idstringPopulated whenever the provider has data for the entity.
data.interestedCountinteger
data.isCanceledboolean
data.isOnlineboolean
data.locationNamestringPopulated whenever the provider has data for the entity.
data.namestringPopulated whenever the provider has data for the entity.
data.startTimestring
data.urlstringPopulated whenever the provider has data for the entity.
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the Facebook Event details API

The AnyAPI Facebook Event details API returns Facebook event details data as normalized JSON from one POST call to /v1/run/facebook.event_details. Fetch full details for a single Facebook event by ID or URL (name, schedule, venue, hosts, and attendance) as normalized JSON. AnyAPI returns one normalized schema whichever source serves it. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum.

It costs from $1.20 per 1,000 requests, 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.

Fetch full details for a single Facebook event by ID or URL (name, schedule, venue, hosts, and attendance) 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.