Skip to main content
POST
/
verifications
/
{id}
/
export
Export verification results
curl --request POST \
  --url https://api.anycheck.ai/verifications/{id}/export \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]"
}
'
{
"export_url": "https://api.anycheck.ai/exports/verification-123-results.pdf"
}

Authorizations

Authorization
string
header
required

JWT token obtained from /auth/login endpoint.

Example:

Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...

Path Parameters

id
string<uuid>
required

Verification ID to export

Body

application/json
email
string<email>

Optional email address for async export notification

Response

Export file generated successfully (sync export)

export_url
string<uri>

URL to download the exported file

Example:

"https://api.anycheck.ai/exports/verification-123-results.pdf"