Loading…
Test TrustVerify API endpoints interactively. Execute requests and see real-time responses.
Select an endpoint to test
/api/verify/identitySandbox fixture — returns a simulated identity-verification response for integration testing. No verification is performed.
Sandbox endpoints are authenticated: provide an API key or sign in. Responses are simulated fixtures — no real checks run here.
{
"firstName": "string (required)",
"lastName": "string (required)",
"dateOfBirth": "string (YYYY-MM-DD, required)",
"nationalId": "string (optional)",
"passport": "string (optional)",
"environment": "sandbox (default; \"production\" is rejected — sandbox fixtures only)"
}https://api.trustverify.co.uk/api/verify/identitycurl -X POST "https://api.trustverify.co.uk/api/verify/identity" \
-H "Authorization: Bearer your_api_key" \
-H "Content-Type: application/json" \
-d '{
"firstName": "John",
"lastName": "Smith",
"dateOfBirth": "1990-05-15",
"passport": "123456789",
"environment": "sandbox"
}'