Skip to main content
POST
api
/
files
/
social
Social Media URL Upload
curl --request POST \
  --url https://api.prd.realitydefender.xyz/api/files/social \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "socialLink": "<string>"
}
'
The social media URL you would like to analyze.
Use this endpoint to submit a social media link for deepfake detection. The returned response includes a requestId that you can use to fetch the analysis result from the media detail endpoint.

Authorization

To submit a social media URL, you must include the x-api-key in your request headers.

Supported Social Platforms

  • Facebook
  • Instagram
  • Twitter/X
  • YouTube
  • TikTok
  • Threads

Sample Code Snippet

Here’s an example of how you can submit a social media URL and then retrieve the result.
curl -X POST \
  'https://api.prd.realitydefender.xyz/api/files/social' \
  -H 'X-API-KEY: your-api-key-here' \
  -H 'Content-Type: application/json' \
  -d '{"socialLink": "https://www.youtube.com/watch?v=6O0fySNw-Lw"}'