GET
Facebook Downloader
/api/facebook?url={video_url}
Parameters
| Name |
Type |
Required |
Description |
| url |
string |
Yes |
The Facebook public video/reel URL. |
Success Response
{
"data": {
"id": "1186079316476175",
"links": {
"hd": "https://video.url...",
"sd": "https://video.url..."
},
"thumbnail": "https://image.url...",
"title": "Facebook Video"
},
"success": true,
"source": "facebook"
}
GET
Instagram Downloader
/api/instagram?url={post_url}
Parameters
| Name |
Type |
Required |
Description |
| url |
string |
Yes |
The Instagram Post/Reel URL. |
Video Response
{
"data": {
"thumbnail_src": "https://image.url...",
"video_url": "https://video.url..."
},
"success": true,
"source": "instagram-api"
}
Carousel/Image Response
{
"data": {
"thumbnail_src": [
"https://image1.url...",
"https://image2.url...",
...
]
},
"success": true,
"source": "instagram-api"
}