Extract video, story, and reel data from Facebook with a simple API call. Get HD/SD download links, thumbnails, titles, and metadata in JSON format.
Built for developers who need reliable, fast, and comprehensive Facebook content extraction.
Extract HD and SD video download links from any public Facebook video post, including groups and pages.
Retrieve story content including photos and videos from public Facebook stories with full metadata.
Full support for Facebook Reels — extract video URLs, thumbnails, and descriptions in seconds.
Average response time under 500ms. Our distributed infrastructure ensures low latency worldwide.
Clean, well-structured JSON responses with video URLs, quality info, thumbnails, and metadata.
API key authentication, rate limiting, and HTTPS encryption. 99.9% uptime SLA for paid plans.
Sign up for free and get your unique API key instantly. No credit card required.
Send a GET request with the Facebook URL and your API key. It's that simple.
Receive structured JSON with video/story download links, thumbnails, and metadata.
Choose your preferred language and start integrating in minutes.
# Get Facebook video information curl -X GET \ "https://getvidfb.com/api/v1/video-info?url=https://www.facebook.com/watch?v=123456789" \ -H "X-API-Key: gvfb_your_api_key_here"
// Using fetch (Node.js / Browser) const response = await fetch( 'https://getvidfb.com/api/v1/video-info?url=FACEBOOK_URL', { headers: { 'X-API-Key': 'gvfb_your_api_key_here' } } ); const data = await response.json(); console.log(data.links.sd); // SD download URL console.log(data.links.hd); // HD download URL
import requests url = "https://getvidfb.com/api/v1/video-info" params = {"url": "https://www.facebook.com/watch?v=123456789"} headers = {"X-API-Key": "gvfb_your_api_key_here"} response = requests.get(url, params=params, headers=headers) data = response.json() print(data["title"]) print(data["links"]["sd"])
// Success Response (200 OK) { "success": true, "source": "FB-Vid", "title": "Amazing sunset timelapse", "description": "Watch this breathtaking sunset...", "thumbnail": "https://...", "links": { "sd": "https://video-sd-url.mp4", "hd": "https://video-hd-url.mp4", "audio": "https://audio-url.mp3" }, "duration": null, "timestamp": "2026-03-29T07:00:00Z" }
Start free, scale as you grow. No hidden fees.
X-API-Key: gvfb_your_key_here. You can find your API key in your dashboard after creating an account.
Create your free account and get your API key in seconds. No credit card required.