eternalsocial.dev
Facebook

Get Facebook reel information

POST
/api/facebook/reel

Authorization

bearerAuth
AuthorizationBearer <token>

JWT token from /auth/login or API key from /keys

In: header

Request Body

application/json

reelUrl*string
Formaturi
webhookUrl?string

Webhook URL to receive results. If provided, request returns immediately.

Formaturi

Response Body

application/json

application/json

application/json

curl -X POST "http://localhost:3222/api/facebook/reel" \  -H "Content-Type: application/json" \  -d '{    "reelUrl": "https://www.facebook.com/reel/123456789"  }'
{
  "success": true,
  "requestId": "string",
  "data": {
    "id": "string",
    "postId": "string",
    "thumbnailUrl": "string",
    "videoUrl": "string",
    "stats": {
      "viewCount": 0,
      "likeCount": 0,
      "commentCount": 0,
      "shareCount": 0
    },
    "timestamp": 0,
    "caption": "string"
  },
  "itemCount": 0,
  "creditsCharged": 0
}
{
  "success": true,
  "requestId": "string",
  "status": "processing",
  "message": "string"
}
{
  "success": false,
  "error": "string",
  "requestId": "string"
}