Snapchat
Snapchat post.info
Fetch a Snapchat post from its URL. Normalized JSON, one price per record, automatic failover across sources.
POST
/
v1
/
snapchat
/
post.info
curl -X POST https://api.socialrouter.io/v1/snapchat/post.info \
-H "Authorization: Bearer sr_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA"
}'
const response = await fetch(
"https://api.socialrouter.io/v1/snapchat/post.info",
{
method: "POST",
headers: {
"Authorization": "Bearer sr_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA"
}),
},
);
import requests
response = requests.post(
"https://api.socialrouter.io/v1/snapchat/post.info",
headers={"Authorization": "Bearer sr_live_your_key"},
json={
"url": "https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA"
},
)
const run = await sr.run("snapchat/post.info", {
url: "https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA"
});
{
"id": "ext_a1b2c3d4",
"status": "completed",
"platform": "snapchat",
"service": "post.info",
"url": "https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA",
"served_by": "brightdata/snapchat",
"data": [
{
"name": "Mama🎉💕🥹🕊️",
"profile_url": "https://www.snapchat.com/@mama172391/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYc296cnZ3eXV4AZcI2PzPAZcIwbzkAAAAAQ",
"source": "snapchat",
"extracted_at": "2026-07-16T09:07:19.872Z",
"post_id": "W7_EDlXWTBiXAEEniNoMPwAAYc296cnZ3eXV4AZcI2PzPAZcIwbzkAAAAAQ",
"title": "Spotlight Snap",
"description": "Another Spotlight Snap brought to you by Snapchat",
"date_posted": "2025-05-25T18:43:24.004Z",
"views": 38083,
"num_shares": 625,
"num_comments": 17,
"duration_ms": 13130,
"video_url": "https://bolt-gcdn.sc-cdn.net/y/X8NwyEStL1g4s3njFTNiN.27.IRZXSOY?mo=GlsaCTIBeEgCUC5gAVoQU3BvdGxpZ2h0U2hhcmluZ6IBNwgbEi...",
"thumbnail_url": "https://bolt-gcdn.sc-cdn.net/y/X8NwyEStL1g4s3njFTNiN.256.IRZXSOY?mo=GkMaCTIBeEgCUC5gAVoQRGZMYXJnZVRodW1ibmFpbKIBEAiAA...",
"dimensions": "540x960",
"deeplink": "https://click.snapchat.com/aVHG?pid=snapchat_download_page&af_dp=https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEni...",
"hashtags": [],
"transcript_available": true,
"comments": [
{
"comment_id": "12204819002098075710_11366551314956106419",
"comment_text": "Learn to spell",
"timestamp_ms": 1748231084990,
"like_count": 3,
"report_count": 0,
"threaded_reply_count": 3,
"is_approved": true,
"commenter_id": "10931569591703064456_13071270285520294231",
"commenter_display_name": "Snapchatter",
"commenter_avatar_url": "https://sdk.bitmoji.com/render/panel/103773853570_11-s5.png"
},
"... 9 more"
],
"music_title": "Original Sound",
"music_sub_title": "Contains: Body - Naira Marley",
"username": "mama172391",
"profile_name": "Mama🎉💕🥹🕊️",
"profile_link": "https://www.snapchat.com/@mama172391"
}
],
"pagination": {
"total": 1,
"returned": 1
},
"created_at": "2026-07-30T12:00:00Z",
"completed_at": "2026-07-30T12:00:03Z"
}
Fetch a Snapchat post 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/snapchat. 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.snapchat.com/spotlight/<id> | https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA |
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/snapchat | 1000 |
GET /v1/services/snapchat/post.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 Snapchat exposes it for that item, so the exact set varies record to record.
curl -X POST https://api.socialrouter.io/v1/snapchat/post.info \
-H "Authorization: Bearer sr_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA"
}'
const response = await fetch(
"https://api.socialrouter.io/v1/snapchat/post.info",
{
method: "POST",
headers: {
"Authorization": "Bearer sr_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA"
}),
},
);
import requests
response = requests.post(
"https://api.socialrouter.io/v1/snapchat/post.info",
headers={"Authorization": "Bearer sr_live_your_key"},
json={
"url": "https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA"
},
)
const run = await sr.run("snapchat/post.info", {
url: "https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA"
});
{
"id": "ext_a1b2c3d4",
"status": "completed",
"platform": "snapchat",
"service": "post.info",
"url": "https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA",
"served_by": "brightdata/snapchat",
"data": [
{
"name": "Mama🎉💕🥹🕊️",
"profile_url": "https://www.snapchat.com/@mama172391/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYc296cnZ3eXV4AZcI2PzPAZcIwbzkAAAAAQ",
"source": "snapchat",
"extracted_at": "2026-07-16T09:07:19.872Z",
"post_id": "W7_EDlXWTBiXAEEniNoMPwAAYc296cnZ3eXV4AZcI2PzPAZcIwbzkAAAAAQ",
"title": "Spotlight Snap",
"description": "Another Spotlight Snap brought to you by Snapchat",
"date_posted": "2025-05-25T18:43:24.004Z",
"views": 38083,
"num_shares": 625,
"num_comments": 17,
"duration_ms": 13130,
"video_url": "https://bolt-gcdn.sc-cdn.net/y/X8NwyEStL1g4s3njFTNiN.27.IRZXSOY?mo=GlsaCTIBeEgCUC5gAVoQU3BvdGxpZ2h0U2hhcmluZ6IBNwgbEi...",
"thumbnail_url": "https://bolt-gcdn.sc-cdn.net/y/X8NwyEStL1g4s3njFTNiN.256.IRZXSOY?mo=GkMaCTIBeEgCUC5gAVoQRGZMYXJnZVRodW1ibmFpbKIBEAiAA...",
"dimensions": "540x960",
"deeplink": "https://click.snapchat.com/aVHG?pid=snapchat_download_page&af_dp=https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEni...",
"hashtags": [],
"transcript_available": true,
"comments": [
{
"comment_id": "12204819002098075710_11366551314956106419",
"comment_text": "Learn to spell",
"timestamp_ms": 1748231084990,
"like_count": 3,
"report_count": 0,
"threaded_reply_count": 3,
"is_approved": true,
"commenter_id": "10931569591703064456_13071270285520294231",
"commenter_display_name": "Snapchatter",
"commenter_avatar_url": "https://sdk.bitmoji.com/render/panel/103773853570_11-s5.png"
},
"... 9 more"
],
"music_title": "Original Sound",
"music_sub_title": "Contains: Body - Naira Marley",
"username": "mama172391",
"profile_name": "Mama🎉💕🥹🕊️",
"profile_link": "https://www.snapchat.com/@mama172391"
}
],
"pagination": {
"total": 1,
"returned": 1
},
"created_at": "2026-07-30T12:00:00Z",
"completed_at": "2026-07-30T12:00:03Z"
}
Previous
profile.infoFetch a Snapchat profile from its URL. Normalized JSON, one price per record, automatic failover across sources.
Next
⌘I
curl -X POST https://api.socialrouter.io/v1/snapchat/post.info \
-H "Authorization: Bearer sr_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA"
}'
const response = await fetch(
"https://api.socialrouter.io/v1/snapchat/post.info",
{
method: "POST",
headers: {
"Authorization": "Bearer sr_live_your_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
url: "https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA"
}),
},
);
import requests
response = requests.post(
"https://api.socialrouter.io/v1/snapchat/post.info",
headers={"Authorization": "Bearer sr_live_your_key"},
json={
"url": "https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA"
},
)
const run = await sr.run("snapchat/post.info", {
url: "https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA"
});
{
"id": "ext_a1b2c3d4",
"status": "completed",
"platform": "snapchat",
"service": "post.info",
"url": "https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYcnJsbWlkc2hjAZBBUFViAZBBUFVSAAAAAA",
"served_by": "brightdata/snapchat",
"data": [
{
"name": "Mama🎉💕🥹🕊️",
"profile_url": "https://www.snapchat.com/@mama172391/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYc296cnZ3eXV4AZcI2PzPAZcIwbzkAAAAAQ",
"source": "snapchat",
"extracted_at": "2026-07-16T09:07:19.872Z",
"post_id": "W7_EDlXWTBiXAEEniNoMPwAAYc296cnZ3eXV4AZcI2PzPAZcIwbzkAAAAAQ",
"title": "Spotlight Snap",
"description": "Another Spotlight Snap brought to you by Snapchat",
"date_posted": "2025-05-25T18:43:24.004Z",
"views": 38083,
"num_shares": 625,
"num_comments": 17,
"duration_ms": 13130,
"video_url": "https://bolt-gcdn.sc-cdn.net/y/X8NwyEStL1g4s3njFTNiN.27.IRZXSOY?mo=GlsaCTIBeEgCUC5gAVoQU3BvdGxpZ2h0U2hhcmluZ6IBNwgbEi...",
"thumbnail_url": "https://bolt-gcdn.sc-cdn.net/y/X8NwyEStL1g4s3njFTNiN.256.IRZXSOY?mo=GkMaCTIBeEgCUC5gAVoQRGZMYXJnZVRodW1ibmFpbKIBEAiAA...",
"dimensions": "540x960",
"deeplink": "https://click.snapchat.com/aVHG?pid=snapchat_download_page&af_dp=https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEni...",
"hashtags": [],
"transcript_available": true,
"comments": [
{
"comment_id": "12204819002098075710_11366551314956106419",
"comment_text": "Learn to spell",
"timestamp_ms": 1748231084990,
"like_count": 3,
"report_count": 0,
"threaded_reply_count": 3,
"is_approved": true,
"commenter_id": "10931569591703064456_13071270285520294231",
"commenter_display_name": "Snapchatter",
"commenter_avatar_url": "https://sdk.bitmoji.com/render/panel/103773853570_11-s5.png"
},
"... 9 more"
],
"music_title": "Original Sound",
"music_sub_title": "Contains: Body - Naira Marley",
"username": "mama172391",
"profile_name": "Mama🎉💕🥹🕊️",
"profile_link": "https://www.snapchat.com/@mama172391"
}
],
"pagination": {
"total": 1,
"returned": 1
},
"created_at": "2026-07-30T12:00:00Z",
"completed_at": "2026-07-30T12:00:03Z"
}