Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
POST /v3/universal-ai
image/deepfake_detection/{provider}[/{model}]
image/deepfake_detection/sightengine
import requests url = "https://api.edenai.run/v3/universal-ai" headers = { "Authorization": "Bearer YOUR_API_KEY", "Content-Type": "application/json" } payload = { "model": "image/deepfake_detection/sightengine", "input": { "file": "YOUR_FILE_UUID_OR_URL" } } response = requests.post(url, headers=headers, json=payload) print(response.json())
curl -X POST https://api.edenai.run/v3/universal-ai \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "image/deepfake_detection/sightengine", "input": {"file": "YOUR_FILE_UUID_OR_URL"} }'