Skip to main content
POST
/
api
/
v1
/
analyze
/
batch
Batch Analyze
curl --request POST \
  --url https://api.example.com/api/v1/analyze/batch \
  --header 'Content-Type: multipart/form-data' \
  --form 'schema=<string>' \
  --form 'urls=<string>' \
  --form 'webhook_url=<string>'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Headers

X-API-Key
string

Body

multipart/form-data
schema
string
required

JSON schema — applied to every item

files
string[]

Files to analyze

urls
string | null

JSON array of URLs to analyze

webhook_url
string | null

URL to POST results when the entire batch completes

Response

Successful Response