[NEW] Facebook Downloader — Reels, Watch, Share Links
收藏资源简介:
Any public Facebook video becomes a direct media URL in one call. Watch links, reels, share links and fb.watch short links all resolve the same way, into the same response shape. No login, no page token, no scraping code to maintain. Plans from $2.99.
数据集概述
- 名称:[NEW] Facebook Downloader — Reels, Watch, Share Links
- 类别:Social
- 提供方:GAPI Social Media APIs
- 订阅方案:BASIC ($0.00/月)、PRO ($2.99/月)、ULTRA ($4.49/月)、MEGA ($5.99/月)
核心功能
该API提供一个端点(GET /facebook),可将任何公开的Facebook视频URL解析为直接媒体文件(MP4)链接。支持的URL形式包括:
facebook.com/watch/?v=…(观看链接)facebook.com/reel/…(Reels)facebook.com/share/…(分享链接)fb.watch/…(短链接)
短链接由API服务端解析,无需客户端处理重定向、会话或页面令牌。
响应结构
响应数据结构固定,未适用的字段以null返回(而非消失),便于解析:
json { "platform": "facebook", "type": "video", "title": "- Facebook Reel", "author": null, "thumbnail": null, "duration": null, "media": [ { "type": "video", "url": "https://video.fdad3-8.fna.fbcdn.net/...", "quality": null, "ext": null } ] }
主要字段说明
| 字段 | 类型 | 说明 |
|---|---|---|
platform |
string | 固定为 facebook |
type |
string | 固定为 video |
title |
string | null |
author |
string | null |
thumbnail |
string | null |
duration |
number | null |
media |
array | 始终存在,至少包含一个视频对象 |
media[].url |
string | 直接文件链接 |
请求参数
| 参数 | 类型 | 必填 | 描述 |
|---|---|---|---|
url |
string | 是 | 公开Facebook视频URL(格式见上),需进行URL编码 |
错误码
| 状态码 | 含义 | 处理建议 |
|---|---|---|
400 |
非Facebook URL或格式错误 | 检查输入 |
404 |
私有、已删除或需登录的视频 | 不要重试 |
429 |
达到计划限制或每分钟请求过多 | 等待或升级计划 |
注:返回错误的请求不计入配额。
使用注意
- 仅支持公开视频:需要登录、群组或好友可见的内容会返回
404。 - 媒体链接有效期短:Facebook CDN签名的媒体URL数小时后失效,需及时下载或重新托管文件;再次调用可获取新链接。
- 计费方式:按请求次数计费,而非按文件大小;所有计划均有硬性上限,防止意外费用。
- 下载方式:媒体文件直接从Facebook CDN下载,不经过API服务器,不计入API带宽。
扩展选项
若需要更高调用量,可使用同名API的PRO版本——Facebook Video Downloader PRO,提供每月20,000至50,000次调用,速率限制可达每分钟600次,端点、响应格式完全一致,无需改动代码。



