Skip to main content
POST
/
verifications
/
bulk-export
Bulk export verifications
curl --request POST \
  --url https://api.anycheck.ai/verifications/bulk-export \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "result_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "verification_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "email": "user@example.com",
  "format": "xlsx",
  "sheet_mode": "multiple"
}
'
{ "export_url": "https://api.anycheck.ai/exports/bulk-export-results.xlsx" }

Documentation Index

Fetch the complete documentation index at: https://docs.fintelite.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

API key for service-to-service authentication

Body

application/json
result_ids
string<uuid>[]
required

Result group IDs to export (max 10)

Required array length: 1 - 10 elements
verification_ids
string<uuid>[]

Specific verification IDs to export (max 50, optional)

Maximum array length: 50
email
string<email>

If provided, export is processed asynchronously and the link is sent to this email

Example:

"user@example.com"

format
enum<string>
default:xlsx

Export file format

Available options:
xls,
xlsx
sheet_mode
enum<string>
default:multiple

Whether to put all results in a single sheet or one sheet per result

Available options:
single,
multiple

Response

Export file generated (synchronous export)

export_url
string<uri>
Example:

"https://api.anycheck.ai/exports/bulk-export-results.xlsx"