POST
/
otp
/
new
curl --request POST \
  --url https://api.contiguity.co/otp/new \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "to": "+1234567890",
  "language": "en",
  "name": "Contiguity"
}'
{
  "message": "OTP sent successfully",
  "crumbs": {
    "plan": "free",
    "quota": 3,
    "type": "sms",
    "ad": true
  },
  "otp_id": "abc123xyz"
}

Authorizations

Authorization
string
header
required

Authentication using a Bearer Token. Specify Authorization: Token YOUR_TOKEN. Bearer is allowed.

Body

application/json
to
string
required

Recipient's phone number

Example:

"+1234567890"

language
enum<string>
required

Language for OTP message

Available options:
en,
af,
ar,
ca,
zh,
zh-hk,
hr,
cs,
da,
nl,
fi,
fr,
de,
el,
he,
hi,
hu,
id,
it,
ja,
ko,
ms,
nb,
pl,
pt-br,
pt,
ro,
ru,
es,
sv,
tl,
th,
tr,
vi
Example:

"en"

name
string

Your app's name (customizes message to 'Your [name] code is...')

Example:

"Contiguity"

Response

200
application/json
OTP sent successfully
message
string
Example:

"OTP sent successfully"

crumbs
object
otp_id
string

ID of the generated OTP

Example:

"abc123xyz"

Was this page helpful?