Skip to main content
GET
/
v1
/
verify
/
{app_id}
/
autocomplete
Autocomplete search by identifier
curl --request GET \
  --url https://{defaultHost}/v1/verify/{app_id}/autocomplete \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Authorization: <api-key>'
{
  "results": [
    {
      "id": "<string>",
      "type": "email",
      "value": "<string>",
      "verified": true,
      "last_verified_at": "2023-11-07T05:31:56Z",
      "user": {
        "id": "<string>",
        "name": "<string>",
        "email": "jsmith@example.com",
        "phone": "<string>",
        "status": "<string>",
        "created_at": "2023-11-07T05:31:56Z"
      }
    }
  ],
  "query": "<string>",
  "count": 123
}

Authorizations

Authorization
string
header
required

API Secret token

X-Authorization
string
header
required

User Access token

Path Parameters

app_id
string
required

Application ID

Query Parameters

query
string
required

Search query (partial email or phone, minimum 2 characters)

limit
integer

Maximum number of results (default: 10, max: 50)

Response

successful

results
object[]
query
string

Search query used

count
integer

Number of results returned