Try out Twilio SMS Messaging
To see how Messaging works, you can try it out with just a few clicks. You'll be able to send and receive your first SMS messages within a few minutes.
As you send messages, you'll be able to see the API request and response that Twilio uses. You can build using our API reference, knowing that everything you create can easily transfer to a fully featured account when you upgrade.
For details about trial free units, restrictions, the 30-day expiration, and post-upgrade free units, see Twilio trial account.
To get started, go to the Twilio Console, click Messaging. Under Popular channels, locate SMS and click Try SMS.
During your SMS trial:
- You can only send SMS messages to verified US numbers. To verify a number, Twilio will send a verification code to that number that you must enter on the page.
- Each account can verify up to five numbers. Verified numbers are shared across Messaging and Voice.
- The phone number that you signed up with is automatically added as a verified number.
- If you have multiple accounts, you can use the same verified number for up to three accounts, including subaccounts. If you sign up for a fourth Twilio account with the same number, your number is not added as a verified number.
- Your message is sent from a Twilio trial phone number. Once you upgrade your account, messages will be sent from a Twilio number that you've purchased.
- Verified recipients are shared across Messaging and Voice, but the trial numbers used for outgoing messages and calls may not be the same. Make sure you use the correct number for the product you're testing.
- You'll choose from a few message body examples, such as an order delivery notification or an appointment reminder. You won't be able to write your own message.
When you're ready, you can upgrade your account to gain access to all SMS Messaging functionality.
At any time, click Logs to view SMS logs or Free units tracker to see how many SMS messages you have left in your trial.
On the Try SMS page, follow the on-screen instructions to configure settings and send your message. We recommend sending your first message to yourself, because you'll need access to that message to receive an SMS in your trial account.
Note that the API request and response for your message appear on the page.
By default, during your trial, we send an auto response if you send a message from your verified phone number to your trial phone number.To inspect or customize responses, select Inbound, choose Custom under Auto-Reply, and set up your webhook.
During your trial, you can use Messages resource with some limitations and key differences. The simplest way to build during your trial is to copy your request from the code block on the Try SMS page, then make adjustments as needed.
You can build in your trial environment, then upgrade to a fully featured account when you're ready. Once trial limitations no longer apply, you can create your own custom SMS body content and set additional parameters that were not supported in your trial.
This request uses the Create a Message resource. During your trial, you can only use or change the following parameters:
to: (Required) The recipient's phone number in E.164 format.body: (Required) Must specify one of the following Twilio templates:sms\_2fasms\_appointment\_reminderssms\_order\_confirmationsms\_delivery\_updates,sms\_customer\_supportsms\_marketing\_promotionssms\_event\_notificationssms\_account\_alertssms\_feedback\_surveyssms\_internal\_alerts|statusCallback: (Optional) URL toPOSTmessage status updates (for example, delivered, failed, and so on).
Use the same approach described in Receive and Reply to Incoming Messages - Python. However your SMS trial has the following limitations:
- Twilio Functions, Twilio Proxy, and TwiML Bins are not supported.
- Direct TwiML XML is not supported during response.
See Read multiple Message resources for details about required and optional parameters.