Facebook
Facebook event.info
Fetch a Facebook event from its URL. Normalized JSON, one price per record, automatic failover across sources.
POST
/
v1
/
facebook
/
event.info
curl -X POST https://api.socialrouter.io/v1/facebook/event.info \
-H "Authorization: Bearer sr_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.facebook.com/events/1234567890123456"
}'
const response = await fetch(
"https://api.socialrouter.io/v1/facebook/event.info",
{
method: "POST",
headers: {
"Authorization": "Bearer sr_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://www.facebook.com/events/1234567890123456"
}),
},
);
import requests
response = requests.post(
"https://api.socialrouter.io/v1/facebook/event.info",
headers={"Authorization": "Bearer sr_live_your_key"},
json={
"url": "https://www.facebook.com/events/1234567890123456"
},
)
const run = await sr.run("facebook/event.info", {
url: "https://www.facebook.com/events/1234567890123456"
});
{
"id": "ext_a1b2c3d4",
"status": "completed",
"platform": "facebook",
"service": "event.info",
"url": "https://www.facebook.com/events/1234567890123456",
"served_by": "brightdata/facebook",
"data": [
{
"name": "Buggin' the Beach 2025, the 30th Annual Charity VW Car Show",
"title": "Buggin' the Beach 2025, the 30th Annual Charity VW Car Show",
"location": "Beauvoir, The Jefferson Davis Home and Presidential Library",
"profile_url": "https://www.facebook.com/events/1546764716269782/",
"source": "facebook",
"extracted_at": "2026-07-16T09:10:14.932Z",
"event_id": "1546764716269782",
"description": "Join us on Saturday, March 22, 2025 for the return of Buggin' The Beach, the 30th Annual Charity VW Car Show. Remembe...",
"unformatted_description_text": "Join us on Saturday, March 22, 2025 for the return of Buggin' The Beach, the 30th Annual Charity VW Car Show. Remembe...",
"event_date": "2025-03-22T14:00:00.000Z",
"event_start_time": "2025-03-22T14:00:00.000Z",
"event_end_time": "2025-03-22T21:00:00.000Z",
"event_end_date": "2025-03-22T21:00:00.000Z",
"event_timezone": "CDT",
"full_address": "2244 Beach Blvd, Biloxi, MS 39531-5002, United States",
"latitude": 30.392891048333,
"longitude": -88.970144818,
"access_level": [
"PUBLIC_TYPE"
],
"people_responded": 812,
"num_going": 188,
"num_invited": 624,
"hosts": [
{
"name": "MS Gulf Coast VW Club",
"url": "https://www.facebook.com/MSGCVWClub",
"verified": false
},
"... 2 more"
],
"hashtags": [
"Literature",
"... 1 more"
],
"main_image_downloadable": "https://scontent.ffru6-1.fna.fbcdn.net/v/t39.30808-6/480838100_1035557835274755_2956317912761153963_n.jpg?stp=cp6_dst...",
"duration_value": 420,
"duration_units": "min",
"suggested_events": [
{
"name": "Numan haider ",
"url": "https://www.facebook.com/events/1382014850487146/",
"date": "2026-12-31T18:00:00.000Z",
"people_interested": "1",
"location": "Bishkek"
},
"... 2 more"
],
"alternative_dates": [],
"alternative_date_time": []
}
],
"pagination": {
"total": 1,
"returned": 1
},
"created_at": "2026-07-30T12:00:00Z",
"completed_at": "2026-07-30T12:00:03Z"
}
Fetch a Facebook event from its URL. The response is normalized, so it keeps the same shape whichever offer served it.
The call is synchronous and comes back
Prices are live in the catalogue:
completed or failed. Body fields and error codes shared by every service are documented on Run a service.
Body
string[]
required
The URLs to fetch, as
urls (array) or url (single string). Each one must match an accepted format below, and a mismatch returns 400 invalid_input_format before any routing or billing.string
Single-input form of
urls.number
default:"100"
Maximum number of records to return. Integer, 1-250.
string
Pin one offer, as
source/name. Serving this service: brightdata/facebook. Omit it (the default) to let the router walk the failover chain.object
This service declares no options. Any key sent here returns a corrective
400.Accepted URL formats
| Format | Example |
|---|---|
https://www.facebook.com/events/<event_id> | https://www.facebook.com/events/1234567890123456 |
Offers
One offer serves this endpoint today. When a second one implements it, failover turns on with no change on your side.| Offer | Inputs per call |
|---|---|
brightdata/facebook | 1000 |
GET /v1/services/facebook/event.info. See Credits for how a call is billed.
Response
data[] holds the normalized records, served_by names the offer that answered, and credits_used carries the actual charge.
The example response is a real run with values shortened for readability. A field is present when Facebook exposes it for that item, so the exact set varies record to record.
curl -X POST https://api.socialrouter.io/v1/facebook/event.info \
-H "Authorization: Bearer sr_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.facebook.com/events/1234567890123456"
}'
const response = await fetch(
"https://api.socialrouter.io/v1/facebook/event.info",
{
method: "POST",
headers: {
"Authorization": "Bearer sr_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://www.facebook.com/events/1234567890123456"
}),
},
);
import requests
response = requests.post(
"https://api.socialrouter.io/v1/facebook/event.info",
headers={"Authorization": "Bearer sr_live_your_key"},
json={
"url": "https://www.facebook.com/events/1234567890123456"
},
)
const run = await sr.run("facebook/event.info", {
url: "https://www.facebook.com/events/1234567890123456"
});
{
"id": "ext_a1b2c3d4",
"status": "completed",
"platform": "facebook",
"service": "event.info",
"url": "https://www.facebook.com/events/1234567890123456",
"served_by": "brightdata/facebook",
"data": [
{
"name": "Buggin' the Beach 2025, the 30th Annual Charity VW Car Show",
"title": "Buggin' the Beach 2025, the 30th Annual Charity VW Car Show",
"location": "Beauvoir, The Jefferson Davis Home and Presidential Library",
"profile_url": "https://www.facebook.com/events/1546764716269782/",
"source": "facebook",
"extracted_at": "2026-07-16T09:10:14.932Z",
"event_id": "1546764716269782",
"description": "Join us on Saturday, March 22, 2025 for the return of Buggin' The Beach, the 30th Annual Charity VW Car Show. Remembe...",
"unformatted_description_text": "Join us on Saturday, March 22, 2025 for the return of Buggin' The Beach, the 30th Annual Charity VW Car Show. Remembe...",
"event_date": "2025-03-22T14:00:00.000Z",
"event_start_time": "2025-03-22T14:00:00.000Z",
"event_end_time": "2025-03-22T21:00:00.000Z",
"event_end_date": "2025-03-22T21:00:00.000Z",
"event_timezone": "CDT",
"full_address": "2244 Beach Blvd, Biloxi, MS 39531-5002, United States",
"latitude": 30.392891048333,
"longitude": -88.970144818,
"access_level": [
"PUBLIC_TYPE"
],
"people_responded": 812,
"num_going": 188,
"num_invited": 624,
"hosts": [
{
"name": "MS Gulf Coast VW Club",
"url": "https://www.facebook.com/MSGCVWClub",
"verified": false
},
"... 2 more"
],
"hashtags": [
"Literature",
"... 1 more"
],
"main_image_downloadable": "https://scontent.ffru6-1.fna.fbcdn.net/v/t39.30808-6/480838100_1035557835274755_2956317912761153963_n.jpg?stp=cp6_dst...",
"duration_value": 420,
"duration_units": "min",
"suggested_events": [
{
"name": "Numan haider ",
"url": "https://www.facebook.com/events/1382014850487146/",
"date": "2026-12-31T18:00:00.000Z",
"people_interested": "1",
"location": "Bishkek"
},
"... 2 more"
],
"alternative_dates": [],
"alternative_date_time": []
}
],
"pagination": {
"total": 1,
"returned": 1
},
"created_at": "2026-07-30T12:00:00Z",
"completed_at": "2026-07-30T12:00:03Z"
}
Previous
group.postsList the posts of a Facebook group. Normalized JSON, one price per record, automatic failover across sources.
Next
⌘I
curl -X POST https://api.socialrouter.io/v1/facebook/event.info \
-H "Authorization: Bearer sr_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.facebook.com/events/1234567890123456"
}'
const response = await fetch(
"https://api.socialrouter.io/v1/facebook/event.info",
{
method: "POST",
headers: {
"Authorization": "Bearer sr_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://www.facebook.com/events/1234567890123456"
}),
},
);
import requests
response = requests.post(
"https://api.socialrouter.io/v1/facebook/event.info",
headers={"Authorization": "Bearer sr_live_your_key"},
json={
"url": "https://www.facebook.com/events/1234567890123456"
},
)
const run = await sr.run("facebook/event.info", {
url: "https://www.facebook.com/events/1234567890123456"
});
{
"id": "ext_a1b2c3d4",
"status": "completed",
"platform": "facebook",
"service": "event.info",
"url": "https://www.facebook.com/events/1234567890123456",
"served_by": "brightdata/facebook",
"data": [
{
"name": "Buggin' the Beach 2025, the 30th Annual Charity VW Car Show",
"title": "Buggin' the Beach 2025, the 30th Annual Charity VW Car Show",
"location": "Beauvoir, The Jefferson Davis Home and Presidential Library",
"profile_url": "https://www.facebook.com/events/1546764716269782/",
"source": "facebook",
"extracted_at": "2026-07-16T09:10:14.932Z",
"event_id": "1546764716269782",
"description": "Join us on Saturday, March 22, 2025 for the return of Buggin' The Beach, the 30th Annual Charity VW Car Show. Remembe...",
"unformatted_description_text": "Join us on Saturday, March 22, 2025 for the return of Buggin' The Beach, the 30th Annual Charity VW Car Show. Remembe...",
"event_date": "2025-03-22T14:00:00.000Z",
"event_start_time": "2025-03-22T14:00:00.000Z",
"event_end_time": "2025-03-22T21:00:00.000Z",
"event_end_date": "2025-03-22T21:00:00.000Z",
"event_timezone": "CDT",
"full_address": "2244 Beach Blvd, Biloxi, MS 39531-5002, United States",
"latitude": 30.392891048333,
"longitude": -88.970144818,
"access_level": [
"PUBLIC_TYPE"
],
"people_responded": 812,
"num_going": 188,
"num_invited": 624,
"hosts": [
{
"name": "MS Gulf Coast VW Club",
"url": "https://www.facebook.com/MSGCVWClub",
"verified": false
},
"... 2 more"
],
"hashtags": [
"Literature",
"... 1 more"
],
"main_image_downloadable": "https://scontent.ffru6-1.fna.fbcdn.net/v/t39.30808-6/480838100_1035557835274755_2956317912761153963_n.jpg?stp=cp6_dst...",
"duration_value": 420,
"duration_units": "min",
"suggested_events": [
{
"name": "Numan haider ",
"url": "https://www.facebook.com/events/1382014850487146/",
"date": "2026-12-31T18:00:00.000Z",
"people_interested": "1",
"location": "Bishkek"
},
"... 2 more"
],
"alternative_dates": [],
"alternative_date_time": []
}
],
"pagination": {
"total": 1,
"returned": 1
},
"created_at": "2026-07-30T12:00:00Z",
"completed_at": "2026-07-30T12:00:03Z"
}