Verify Applications
Version 2 of the Verify API is now available! V2 has an improved developer experience and new features. Some of the features of the V2 API include:
- Twilio helper libraries in JavaScript, Java, C#, Python, Ruby, and PHP
- PSD2 Secure Customer Authentication Support
- Improved Visibility and Insights
You are currently viewing Version 1. V1 of the API will be maintained for the time being, but any new features and development will be on Version 2. We encourage you to do any new development with API V2. Check out the migration guide or the API Reference for more information.
Twilio Verify API applications are created through the Verify section of the console. You may have many applications in one Twilio account, but each Application you create will be isolated with a separate application name and separate API key.
Create New Application
To create a new Verify application, click the red plus ('+') button from the console:
You will be taken to your application's Settings page, where you can find your Application ID:
It is also possible to get information about an Verify API Application via the API itself.
Get Application Details
This call will retrieve the application details:
- Name:
- Plan:
- SMS-enabled
GET https://api.authy.com/protected/{FORMAT}/app/details
Parameters
Name | Type | Description |
---|---|---|
user_ip | String (optional) | IP of the user requesting to see the application details. (📇 PII ) |
Response
Name | Type | Description |
---|---|---|
app | App | Object with information about the application. (🏢 not PII ) |
success | Boolean | True if the request was successful. (🏢 not PII ) |
message | String | A message indicating the result of the operation. (🏢 not PII ) |
Example
curl 'https://api.authy.com/protected/json/app/details' \ -H "X-Authy-API-Key: d57d919d11e6b221c9bf6f7c882028f9"
Sample response:
{ "app": { "name": "Verify Sample", "plan": "pay_as_you_go", "sms_enabled": true, "phone_calls_enabled": true, "app_id": 11111, "onetouch_enabled": true }, "message": "Application information.", "success": true }
Need some help?
We all do sometimes; code is hard. Get help now from our support team, or lean on the wisdom of the crowd browsing the Twilio tag on Stack Overflow.