POST
/
verify
cURL
curl --request POST \
  --url https://api.contiguity.com/otp/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "otp_id": "otp_1234567890",
  "otp": "123456"
}'
{
  "id": "req_xxxxxxxxxxxxxxxx",
  "timestamp": 1755722229870,
  "api_version": "v2025.8.20",
  "object": "response",
  "data": {
    "verified": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Verify an OTP

The response is of type object.