v1
latestOpenAPI 3.0.1MIT2026-07-2661255.8 KBRuns an advanced forensic analysis on a public image URL. The API authenticates the caller with a bearer token, checks the user's credit balance, analyzes the image, charges 500 credits after a successful analysis, and returns a structured forensic report.
post/v2/advanced-image-detection
Request body
Example request
{
"image_url": "https://example.com/image.png"
}Response
Advanced Image Detection response
Example response
{
"status": 200,
"cost": 500,
"language": "en",
"title": "Portrait of a Person",
"tags": [
"portrait",
"face"
],
"tool_used": [
"classify_image",
"extract_metadata",
"ela_image"
],
"label": "AI-Generated",
"confidence": "High",
"authenticity": "Manipulated",
"conclusion": "The image shows strong indicators of AI generation.",
"tools_used_analysis": [
{
"id": "extract_metadata",
"analysis": "The metadata is stripped of EXIF and C2PA information."
}
],
"balance": 9500
}