Get a Facebook post or Reel by URL
Get a Facebook post or Reel by URL.
14000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-15
updated
Provider
api.socialfetch.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x02C2fCAfCe36B4AAdB39625866Bc6B1699d83043",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "14000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"url": "https://www.facebook.com/uniladmag/posts/pfbid02h8QyMzZrMtHks9iU7oneNe4yTKMzNPynvA9WYMedK7eLjU422HD6u3dfmvmgT5QQl"
},
"type": "http"
},
"output": {
"example": {
"data": {
"author": {
"avatarUrl": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-1/514261429_10161957814226701_4543987082209670710_n.jpg?stp=c0.0.721.7…",
"name": "Rob Gill",
"platformUserId": "pfbid0uBmCwXFmk9pA4PiBCQrHHU6RGhnfmfVhjSCYj4VjdSgwzjMeamJqm39UqeCdEEdTl",
"profileUrl": "https://www.facebook.com/rob.gill.75",
"verified": false
},
"comments": [],
"lookupStatus": "found",
"media": {
"captionsUrl": null,
"durationSec": 37.64,
"height": 1920,
"imageUrl": null,
"imageUrls": null,
"thumbnailUrl": "https://scontent-bos5-1.xx.fbcdn.net/v/t51.71878-10/660112739_25957974367215059_110893655217320703_n.jpg?stp=dst-jpg_s9…",
"videoHdUrl": "https://video-bos5-1.xx.fbcdn.net/o1/v/t2/f2/m86/AQNJdGdrSnjGzK4cq5gtbF1YJkHJxmv7r2V6lKscQLUfoFkpQJqiXL1p-xRP8hXm_uzQBV…",
"videoUrl": "https://video-bos5-1.xx.fbcdn.net/o1/v/t2/f2/m367/AQPifrfcgYSM0szrgSfU6HXGgyc_676Q7R_bJ9tqkyZbxmII7geMl27xpAqH4AgCW7HXo…",
"width": 1080
},
"metrics": {
"comments": 10,
"likes": 110,
"reactions": null,
"shares": 0,
"views": null
},
"music": {
"albumArtUrl": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/504219432_90029957196451_5125107072007623706_n.jpg?stp=dst-jpg_s168x…",
"musicId": "1736166400619393",
"trackTitle": "Sabrina Carpenter · Manchild",
"type": "LIBRARY_MUSIC"
},
"post": {
"description": "Being a dad of 3 looks a little like… 🕺🤣♥️",
"feedbackId": "ZmVlZGJhY2s6MTAxNjI5NTIxMDU5MTE3MDE=",
"platform": "facebook",
"postId": "10162952105911701",
"publishedAt": "2026-04-07T19:02:33.000Z",
"url": "https://www.facebook.com/reel/823172974137208"
}
},
"meta": {
"creditsCharged": 1,
"requestId": "req_fb5a02ce-9b0e-4b27-8854-0a6e40760e3d",
"version": "v1"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"includeComments": {
"anyOf": [
{
"type": "boolean"
},
{
"enum": [
"0",
"1",
"true",
"false"
],
"type": "string"
}
],
"description": "When true, includes a sample of top-level comments when available."
},
"includeTranscript": {
"anyOf": [
{
"type": "boolean"
},
{
"enum": [
"0",
"1",
"true",
"false"
],
"type": "string"
}
],
"description": "When true, includes a plain-text transcript when available for the video."
},
"url": {
"description": "Public permalink to the Facebook post or reel.",
"maxLength": 4096,
"minLength": 1,
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.socialfetch.dev/v1/facebook/posts" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.socialfetch.dev/v1/facebook/posts");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.socialfetch.dev/v1/facebook/posts")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3083.json, and this resource appears in /discovery/resources and /discovery/search.