Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Authy One-Time Passwords (OTP)


(warning)

Warning

As of November 2022, Twilio no longer provides support for Authy SMS/Voice-only customers. Customers who were also using Authy TOTP or Push prior to March 1, 2023 are still supported. The Authy API is now closed to new customers and will be fully deprecated in the future.

For new development, we encourage you to use the Verify v2 API.

Existing customers will not be impacted at this time until Authy API has reached End of Life. For more information about migration, see Migrating from Authy to Verify for SMS(link takes you to an external page).

Before sending a One-Time Password:

  1. Create an Authy Application ( see Applications documentation )
  2. Create a User ( see Users documentation )

Once a user has been registered with your Twilio Authy application and receives an AuthyID, you can now implement 2FA, passwordless login or protect an in-application high-value transaction. Using the Authy API, you can send one-time passwords over voice or SMS channels.

Users can also install the free Authy app(link takes you to an external page) or use our SDK to generate offline TOTP(link takes you to an external page) codes (soft tokens). Soft tokens do not require wireless connectivity to issue and verify.

The Authy API is used to verify a user has access to the right phone number (for SMS and Voice channels) or has access to the right trusted device (for TOTP via the Authy App or use of the SDK).

Twilio's Authy API follows the algorithms described in RFC 6238(link takes you to an external page) and RFC 4226(link takes you to an external page) to generate TOTP (Time-Based One-Time Passwords) passwords. It is also possible to use your own hardware tokens, please contact us(link takes you to an external page) for information on how to enable this type of 2FA.


Request a One-Time Password

request-a-one-time-password page anchor

When you call the API to start either an SMS or voice-based authentication, it automatically checks to see if that user has previously downloaded the Authy app or has an app installed that uses our SDK. If the user has the Authy App, by default, the API will not send the 2FA code via SMS or voice. Instead, a push notification will go to the device , prompting the user to start their app to get the code.

If a user has no record of installing a device, then the API will continue to send the code via SMS or voice. You can override the default behavior to force the sending of code via SMS or voice every time. This is a useful override if a user is specifically selecting "Send SMS" or "Get code via voice call" in your application UI.

For information on timing and other constraints like rate limiting, see our two-factor authentication best practices.


_10
GET https://api.authy.com/protected/{FORMAT}/sms/{AUTHY_ID}

URL

request-one-time-password-url page anchor
NameDescription
FORMAT StringThe format to expect back from the REST API call. json or xml.
AUTHY_ID IntegerThe Authy ID of the user to send an SMS TOTP. Create an Authy ID by registering a user. Note that password delivery may be upgraded to use the Authy application; see response parameters below.
NameDescription
force Boolean (optional)Default is false. Set to true to send one-time passwords over the SMS channel even if the user has an Authy or SDK enabled app installed. Configure default behavior in the console. (🏢 not PII )
action String (optional)The optional action or context we are trying to validate. (🏢 not PII )
action_message String (optional)Optional message for the specific action. (🏢 not PII )
locale String (optional)The language of the message received by user. If no locale is given, Twilio will try to autodetect it based on the country code. English is used if no locale is autodetected. More details below (🏢 not PII )
NameDescription
success BooleanReturns true if the request was successful. (🏢 not PII )
message StringA message indicating what happened with the request. (🏢 not PII )
cellphone StringThe country code and last two digits of phone number used to send the message with the rest obfuscated. (🏢 not PII )
ignored BooleanTrue if we detected an Authy or SDK enabled app installed and we upgraded the OTP delivery channel from 'SMS' to Push Notification. Authy or SDK users are redirected directly to the requested token. (🏢 not PII )
device StringThe type of the last device used by the user. This is only returned when we upgraded delivery from SMS. (🏢 not PII )

Supported languages are: Afrikaans (af), Arabic (ar), Catalan (ca), Chinese (zh), Chinese (Mandarin) (zh-CN), Chinese (Cantonese) (zh-HK), Croatian (hr), Czech (cs), Danish (da), Dutch (nl), English (en), Finnish (fi), French (fr), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Indonesian (id), Italian (it), Japanese (ja), Korean (ko), Malay (ms), Norwegian (nb), Polish (pl), Portuguese - Brazil (pt-BR), Portuguese (pt), Romanian (ro), Russian (ru), Spanish (es), Swedish (sv), Tagalog (tl), Thai (th), Turkish (tr), Vietnamese (vi). We support the format country-region as described in IETF's BPC 47(link takes you to an external page). If no region is given (or supported), there will be a default by country.


Send a One-time Password Via SMS

send-a-one-time-password-via-sms page anchor

Send a One-time Password Via SMS

send-a-one-time-password-via-sms-1 page anchor
Python
C#
Java
PHP
Ruby
curl

_11
# Download the helper library from https://github.com/twilio/authy-python
_11
from authy.api import AuthyApiClient
_11
_11
# Your API key from twilio.com/console/authy/applications
_11
# DANGER! This is insecure. See http://twil.io/secure
_11
authy_api = AuthyApiClient('api_key')
_11
_11
sms = authy_api.users.request_sms(authy_id)
_11
_11
if sms.ok():
_11
print sms.content

Output

_10
{
_10
"success":true,
_10
"message":"SMS token was sent",
_10
"cellphone":"+1-XXX-XXX-XX02"
_10
}

Default Behavior for Users with the Authy App Installed

default-behavior-for-users-with-the-authy-app-installed page anchor

If the user has the Authy App, by default, the API will not send the 2FA code via SMS or voice. Instead, a push notification will go to the device, prompting the user to start their app to get the code. The user's notification will look like this:

Authy push notification - app installed on attempt to send an SMS.

If the user has the Authy app installed the API response will look like this:


_10
{
_10
"message":"Ignored: SMS is not needed for smartphones. Pass force=true if you want to actually send it anyway.",
_10
"cellphone":"+1-XXX-XXX-XX02",
_10
"device":"android",
_10
"ignored":true,
_10
"success":true
_10
}

Override Default Behavior and Force Sending SMS

override-default-behavior-and-force-sending-sms page anchor

You can override this behavior and force sending an SMS or Voice call. This is a useful override if a user is specifically selecting "Send SMS" or "Get code via voice call" in your application UI.

Send a One-time Password Via SMS (Forced)

send-a-one-time-password-via-sms-forced page anchor
Python
C#
Java
PHP
Ruby
curl

_11
# Download the helper library from https://github.com/twilio/authy-python
_11
from authy.api import AuthyApiClient
_11
_11
# Your API key from twilio.com/console/authy/applications
_11
# DANGER! This is insecure. See http://twil.io/secure
_11
authy_api = AuthyApiClient('api_key')
_11
_11
sms = authy_api.users.request_sms(authy_id, {'force': True})
_11
_11
if sms.ok():
_11
print sms.content

Output

_10
{
_10
"success":true,
_10
"message":"SMS token was sent",
_10
"cellphone":"+1-XXX-XXX-XX02"
_10
}

Custom Actions (Optional)

custom-actions-optional page anchor

Optionally, you can limit a specific token to a single action, for example coupling a one-time password to a specific login request or transaction. Most implementations will not need this feature.

You can pass action= and action_message= (optional) to send a code that is only valid for the given action. This is useful if you require codes to perform different actions on your app, for example, you can pass action=login&action_message="Login code"when sending a login code.

When using this option you must pass the same action when verifying the code.

(warning)

Warning

  • Sending an SMS with custom actions will always send the SMS even if the user has the Authy app installed. Sending force=true is not necessary.
  • Codes generated through regular sms and the Authy app won't work when sending the custom actions parameters to the verify endpoint.
  • Custom actions is not supported for voice calls.

Send a One-time Password Via SMS with a Custom Action

send-a-one-time-password-via-sms-with-a-custom-action page anchor

Limit an OTP to a single action

Python
C#
Java
PHP
Ruby
curl

_13
# Download the helper library from https://github.com/twilio/authy-python
_13
from authy.api import AuthyApiClient
_13
_13
# Your API key from twilio.com/console/authy/applications
_13
# DANGER! This is insecure. See http://twil.io/secure
_13
authy_api = AuthyApiClient('api_key')
_13
_13
sms = authy_api.users.request_sms(
_13
authy_id,
_13
{'action': 'login', 'action_message': 'Login code'})
_13
_13
if sms.ok():
_13
print sms.content

Output

_10
{
_10
"success":true,
_10
"message":"SMS token was sent",
_10
"cellphone":"+1-XXX-XXX-XX02"
_10
}


Send a One-Time Password via Voice

send-a-one-time-password-via-voice page anchor

For users that don't own a smartphone or are having trouble with SMS Tokens, Authy allows you to use phone calls instead. Like SMS, by default this call will be ignored if the user is using the Authy Mobile app. You can override the default behavior with the force parameter.


_10
GET https://api.authy.com/protected/{FORMAT}/call/{AUTHY_ID}

NameDescription
FORMAT StringThe format to expect back from the REST API call. json or xml.
AUTHY_ID IntegerThe Authy ID of the user to send an SMS TOTP. Create an Authy ID by registering a user. Note that password delivery may be upgraded to use the Authy application; see response parameters below.
NameDescription
force Boolean (optional)Default is false. Set to true to send one-time passwords over the Voice channel even if the user has an Authy or SDK enabled app installed. Configure default behavior in the console. (🏢 not PII )
action String (optional)The action or context we are trying to validate. (🏢 not PII )
action_message String (optional)Message for the specific action. (🏢 not PII )
locale String (optional)The language of the message received by user. If no locale is given, Twilio will try to autodetect it based on the country code. English is used if no locale is autodetected. More details above. (🏢 not PII )
NameDescription
success BooleanReturns true if the request was successful. (🏢 not PII )
message StringA message indicating what happened with the request. (🏢 not PII )
cellphone StringThe country code and last two digits of phone number used to send the message, with the rest obfuscated. (🏢 not PII )
ignored BooleanTrue if we detected an Authy or an SDK enabled app installed and we upgraded the OTP delivery channel from 'Voice' to Push Notification. Authy or SDK users are redirected directly to the requested token. (🏢 not PII )
device StringThe type of the last device used by the user. This is only returned when we upgraded delivery from a voice call. (🏢 not PII )

Send a One-time Password Via Voice Call

send-a-one-time-password-via-voice-call page anchor
Python
C#
Java
PHP
Ruby
curl

_11
# Download the helper library from https://github.com/twilio/authy-python
_11
from authy.api import AuthyApiClient
_11
_11
# Your API key from twilio.com/console/authy/applications
_11
# DANGER! This is insecure. See http://twil.io/secure
_11
authy_api = AuthyApiClient('api_key')
_11
_11
call = authy_api.users.request_call(authy_id)
_11
_11
if call.ok():
_11
print call.content

Output

_10
{
_10
"success":true,
_10
"message":"Call started...",
_10
"cellphone":"+1-XXX-XXX-XX02"
_10
}

Default Behavior for Users with the Authy App Installed

default-behavior-for-users-with-the-authy-app-installed-1 page anchor

If the user has the Authy App, by default, the API will not call the user. See above for more details. The API response will look like this:


_10
{
_10
"message": "Call ignored. User is using App Tokens and this call is not necessary. Pass force=true if you still want to call users that are using the App.",
_10
"cellphone": "+1-XXX-XXX-XX02",
_10
"device": "android",
_10
"ignored": true,
_10
"success": true
_10
}

Like SMS, you can pass force=true as a parameter to this API. This will force the phone call to start even if the user is using the Authy app.


Verify a One-Time Password

verify-a-one-time-password page anchor

To verify a one-time password pass in the user provided token and the user authy_id. Twilio will use HTTP status codes for the response.


_10
GET https://api.authy.com/protected/{FORMAT}/verify/{TOKEN}/{AUTHY_ID}

NameDescription
FORMAT StringThe format to expect back from the REST API call. json, or xml.
TOKEN IntegerThe token you are verifying.
AUTHY_ID StringThe Authy ID of the user validating the TOTP. Create an Authy ID by registering a user.
NameDescription
200Valid token (see note below)*
401Invalid token. If you wish to verify the token anyway, pass force=true. See the force verification section below for an example.

*Note: Until you successfully verify a token for a new user, this call will return 200.

NameDescription
token StringEither "is valid" or "is invalid" (🏢 not PII )
success String"true" if the code was valid. Please note this field is a String and not a Boolean. (🏢 not PII )
device ObjectAn object including some details about the device used to get or generate the token. The fields included in the device object are: city, region, country, ip, registration_city, registration_region, registration_country, registration_ip, registration_date, os_type, last_account_recovery_at and id. (📇 PII )

When the TOTP token is generated in the Authy app or in the SDK, additional device information and registration data are provided in the response.

Python
C#
Java
PHP
Ruby
curl

_10
# Download the helper library from https://github.com/twilio/authy-python
_10
from authy.api import AuthyApiClient
_10
_10
# Your API key from twilio.com/console/authy/applications
_10
# DANGER! This is insecure. See http://twil.io/secure
_10
authy_api = AuthyApiClient('api_key')
_10
_10
verification = authy_api.tokens.verify(authy_id, token='1234567')
_10
print(verification.ok())

Output

_21
{
_21
"message": "Token is valid.",
_21
"token": "is valid",
_21
"success": "true",
_21
"device": {
_21
"city": "San Francisco",
_21
"country": "United States",
_21
"ip": "97.20.126.156",
_21
"region": "California",
_21
"registration_city": "San Francisco",
_21
"registration_country": "United States",
_21
"registration_device_id": 456456,
_21
"registration_ip": "97.34.234.11",
_21
"registration_method": "push",
_21
"registration_region": "California",
_21
"os_type": "android",
_21
"last_account_recovery_at": null,
_21
"id": 83372911,
_21
"registration_date": 1490996931
_21
}
_21
}

The same API is used to verify tokens from TOTP, sms, and voice channels. However when the OTP token is delivered via SMS or voice call, no additional device details are provided and the response will look like:


_20
{
_20
"message": "Token is valid.",
_20
"token": "is valid",
_20
"success": "true",
_20
"device": {
_20
"id": null,
_20
"os_type": "sms",
_20
"registration_date": 1490996931,
_20
"registration_method": null,
_20
"registration_country": null,
_20
"registration_region": null,
_20
"registration_city": null,
_20
"country": null,
_20
"region": null,
_20
"city": null,
_20
"ip": null,
_20
"last_account_recovery_at": null,
_20
"last_sync_date": null
_20
}
_20
}

Force One-Time Password Validation for Unregistered User

force-one-time-password-validation-for-unregistered-user page anchor

Use force=true to force verification of a one-time password from a new user.


_10
curl -i "http://api.authy.com/protected/json/verify/{TOKEN}/{AUTHY_ID}" \
_10
-H "X-Authy-API-Key: d57d919d11e6b221c9bf6f7c882028f9"

Response if force=false or Not Set

response-if-forcefalse-or-not-set page anchor

_10
{
_10
"token":"Not checked. User has not yet finished the registration process. Pass force=true to this API to check regardless (more secure)."
_10
}

Response if force=true

response-if-forcetrue page anchor

_10
{
_10
"errors": {
_10
"token":"is invalid"
_10
}
_10
}

Verify Tokens when using Authy Custom Actions

verify-tokens-when-using-authy-custom-actions page anchor

When using custom actions to send SMS you have to pass action= to validate the one-time password.
For more information see Custom Actions.


_10
{
_10
"token": "is valid"
_10
}

A verification attempt with an invalid token will return a 401 Unauthorized with the following Response body:


_10
{
_10
"message": "Token is invalid",
_10
"token": "is invalid",
_10
"success": false,
_10
"errors": {
_10
"message": "Token is invalid"
_10
},
_10
"error_code": "60020"
_10
}


Authenticator App Generated Time-based One-Time Passwords

authenticator-app-generated-time-based-one-time-passwords page anchor

Create a Generic Authenticator App QR Code

create-a-generic-authenticator-app-qr-code page anchor
Python
C#
Ruby
curl

_11
# Download the helper library from https://github.com/twilio/authy-python
_11
from authy.api import AuthyApiClient
_11
_11
# Your API key from twilio.com/console/authy/applications
_11
# DANGER! This is insecure. See http://twil.io/secure
_11
authy_api = AuthyApiClient('api_key')
_11
_11
# Available in version 2.2.4+
_11
response = api.users.generate_qr(authy_id, size=200, label="My Example App")
_11
_11
print(response.content['qr_code'])

Output

_10
{
_10
"label": "AppName(myuser@example.com)",
_10
"Issuer": "AppName",
_10
"qr_code": "https://[qr_code]",
_10
"success": true
_10
}

When you enroll a user, they will automatically be able to generate Soft Token TOTP codes in the Authy App if they register for Authy with the same phone number that you used to enroll them. You do not need to do anything additional to take advantage of the Authy app. You can disable this behavior with the 'Sync tokens in Authy app' setting in the Authy settings in the Twilio Console(link takes you to an external page).

To validate these One-Time Passwords, see Verify a One-Time Password below.

Other Authenticator Apps

other-authenticator-apps page anchor

To support other Authenticator apps, like Google Authenticator, display a QR code to your users that contain a compatible OTP secret. The API will return a link to a valid QR code.

To customize the QR label and give the final user context about the token like account name or email, you can include the label param in the QR generation endpoint. That way many Authenticator apps will automatically render the label in the token list.

To enable, browse to your Authy application in the Twilio Console. Click on your App's Settings and scroll to the bottom.

Note: each QR code request will generate a unique TOTP seed. You can only have a single active QR code per user per protected site. Requesting an additional QR code for a user will invalidate the previous secret and generate a new QR code.

When providing a QR code to a user, be sure to have them validate the code before applying 2FA protection to their account.

(information)

Info

QR codes are valid for 24 hours. After that, it will expire and you will need to generate a new QR code.


_10
POST https://api.authy.com/protected/{FORMAT}/users/{AUTHY_ID}/secret

NameDescription
FORMAT StringThe format to expect back from the REST API call. json or xml.
AUTHY_ID IntegerThe Authy ID of the user to send an SMS TOTP. Create an Authy ID by registering a user.
NameDescription
qr_size Integer (optional)Dimension of the QR code that will be returned. Square, so only one number required. Default value is 256. Max value is 320. (🏢 not PII )
label String (optional)A custom label for the QR code, this field will be shown by the Authenticator app, it gives context to the user, like the account email. Default value is the application name. (📇 PII )

Rate this page: