Skip to main content
POST
/
verifications
/
{id}
/
download-raw-excel
Download raw Excel data
curl --request POST \
  --url https://api.anycheck.ai/verifications/{id}/download-raw-excel \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]"
}
'
{
"export_url": "https://api.anycheck.ai/downloads/verification-123-raw-data.xlsx"
}

Authorizations

Authorization
string
header
required

JWT token obtained from /auth/login endpoint.

Example:

Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...

Path Parameters

id
string<uuid>
required

Verification ID

Body

application/json
email
string<email>

Optional email address for async export notification

Response

Raw Excel data download link generated (sync export)

export_url
string<uri>

URL to download raw Excel file

Example:

"https://api.anycheck.ai/downloads/verification-123-raw-data.xlsx"