API playground
Try Veridi API calls live, against your tenant, with full request/response visibility.
The playground sends real requests to
api.veridi.id. Use a sandbox API key (any key on a tenant where sandbox=true) so you don't burn billable quota.Embedded Swagger UI
We ship the interactive OpenAPI 3 spec — the same one the SDK is generated from. Click Authorize, paste your API key, and hit Try it out on any endpoint.
Postman collection
Prefer Postman? The OpenAPI spec is importable directly. Download docs-json and use Postman's "Import → OpenAPI 3.0" workflow.
cURL snippets
# Initiate a KYC
curl https://api.veridi.id/api/v1/kyc/initiate \
-H "X-Api-Key: $VERIDI_API_KEY" \
-H "Content-Type: application/json" \
-d '{"type":"INDIVIDUAL_KTP","subjectExternalRef":"customer_001"}'
# Get status
curl https://api.veridi.id/api/v1/kyc/<id> \
-H "X-Api-Key: $VERIDI_API_KEY"