TrustVerify logo
Developer PortalAPI Playground

API Playground

Test TrustVerify API endpoints interactively. Execute requests and see real-time responses.

Endpoints

Select an endpoint to test

Identity Verification
Fraud Prevention
Risk Intelligence
Transactions
Webhooks
POST
/api/verify/identity

Verify user identity using personal information and documents

View schema
{
  "firstName": "string (required)",
  "lastName": "string (required)",
  "dateOfBirth": "string (YYYY-MM-DD, required)",
  "email": "string (valid email, required)"
}
Request URL:
https://sandbox-api.trustverify.co.uk/v1/api/verify/identity

Code Snippet

curl -X POST "https://sandbox-api.trustverify.co.uk/v1/api/verify/identity" \
  -H "Authorization: Bearer your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
  "firstName": "John",
  "lastName": "Smith",
  "dateOfBirth": "1990-05-15",
  "email": "john.smith@example.com",
  "documentType": "passport",
  "documentNumber": "123456789"
}'