stile
PlaygroundVerified person

Look up a verified person

Server-to-server lookup. Check if a user is already verified before loading the SDK. Requires at least one of `email` or `phone`.

POST
/v1/verified_person/lookup

Authorization

BearerAuth
AuthorizationBearer <token>

Use a secret API key as the bearer token. Keys are prefixed with vk_test_ (test mode) or vk_live_ (live mode).

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "http://localhost:3000/v1/verified_person/lookup" \  -H "Content-Type: application/json" \  -d '{}'
{
  "object": "verified_person_lookup",
  "verified": true,
  "verified_person_id": "string",
  "credentials": [
    {
      "method": "string",
      "strength": "string",
      "verified_at": 0,
      "expires_at": 0
    }
  ]
}
{
  "error": {
    "type": "invalid_request_error",
    "code": "string",
    "message": "string",
    "param": "string",
    "request_id": "string"
  }
}
{
  "error": {
    "type": "invalid_request_error",
    "code": "string",
    "message": "string",
    "param": "string",
    "request_id": "string"
  }
}