POST
/
image
cURL
curl -X POST "https://api.antigenailabs.com/image" \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{"image_url":"https://example.com/image.jpg"}'
{
"score": 0.85,
"media_url": "https://example.com/media/image.jpg"
}

Authorizations

x-api-key
string
header
required

A unique key used for authentication to access the API.

Body

application/json

Image to analyze. Provide either image_url or media.

image_url
string<uri>
required

URL of the image to analyze.

Response

AI-generated image analysis result.

score
number

Confidence score (0-1) that the image is AI-generated.

media_url
string<uri>

URL of the analyzed image.