Menu

Expand
Rate this page:

Make Outbound Phone Calls with Java

Twilio is launching a new Console. Some screenshots on this page may show the Legacy Console and therefore may no longer be accurate. We are working to update all screenshots to reflect the new Console experience. Learn more about the new Console.

In this guide, we'll show you how to use Programmable Voice to make outbound phone calls from your Java applications. It's pretty easy - all you'll need is the Twilio library for Java, a voice-capable Twilio phone number, your Twilio account credentials, and five minutes to have a boatload of fun at your keyboard. Let's get started!

If you are sending SMS messages to the U.S. or Canada, before proceeding further please be aware of updated restrictions on the use of Toll-Free numbers for messaging, including TF numbers obtained by purchasing them. These restrictions do not apply to Voice or other uses outside of SMS messaging. Please click here for details.

In the Twilio console, search for and purchase an available phone number capable of making outbound calls. You'll use this phone number as the "From" phone number when you initiate an outbound call.

Search for voice capable numbers

Retrieve your Twilio account credentials

First, you'll need to get your Twilio account credentials. They consist of your AccountSid and your Auth Token. They can be found on the home page of the console.

Retrieve Your Twilio Credentials

Make an outbound call

Now we're ready to make an outbound call using the Twilio Java library.

Loading Code Sample...
        
        

        Make an outbound call

        There are a few key parameters to drill into when making the outbound call.

        • "From" - the voice-enabled Twilio phone number you added to your account earlier
        • "To" - the person you'd like to call
        • "Twiml" - Instructions in the form TwiML that explains what should happen when the other party picks up the phone
        • "Url" - Optionally, instead of passing the Twiml parameter, you can provide a Url that returns TwiML Voice instructions.

        What is TwiML?

        TwiML is the Twilio Markup Language, which is just to say that it's an XML document with special tags defined by Twilio to help you build your SMS and voice applications. TwiML is easier shown than explained. Here's some TwiML you might use to respond to an incoming phone call:

        <?xml version="1.0" encoding="UTF-8"?>
        <Response>
            <Say>Thanks for calling!</Say>
        </Response>
        

        And here's some TwiML you might use to respond to an incoming SMS message:

        <?xml version="1.0" encoding="UTF-8"?>
        <Response>
            <Message>We got your message, thank you!</Message>
        </Response>
        

        Every TwiML document will have the root <Response> element and within that can contain one or more verbs. Verbs are actions you'd like Twilio to take, such as <Say> a greeting to a caller, or send an SMS <Message> in reply to an incoming message. For a full reference on everything you can do with TwiML, refer to our TwiML API Reference.

        Loading Code Sample...
              
              
              This uses the Url parameter

              Make an outbound call with hosted TwiML

              This uses the Url parameter
              Loading Code Sample...
                    
                    
                    This XML document uses the <Say> and the <Play> TwiML tags to read a message and play an MP3 file for the user.

                    The TwiML used to make the outbound call

                    This XML document uses the <Say> and the <Play> TwiML tags to read a message and play an MP3 file for the user.

                    Of course, the TwiML you use to make the outbound call doesn't need to be a static file like in this example. Server-side Java code that you control can dynamically render TwiML to use for the outbound call.

                    Where to next?

                    Great work! In a few lines of code, you've placed an outbound phone call from your Java code. If you're interested in learning more about building voice applications in Java, perhaps we could tempt you with a few tutorials? Tutorials walk through full sample applications that implement production Twilio use cases, like these:

                    Kevin Whinnery Maylon Pedroso Jarod Reyes Rob Spectre Ricky Robinett David Prothero Craig Dennis Andrew Baker Daniel Erazo Brianna DelValle Mathew Roberts
                    Rate this page:

                    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 by visiting Twilio's Stack Overflow Collective or browsing the Twilio tag on Stack Overflow.

                    Loading Code Sample...
                          
                          
                          

                          Thank you for your feedback!

                          Please select the reason(s) for your feedback. The additional information you provide helps us improve our documentation:

                          Sending your feedback...
                          🎉 Thank you for your feedback!
                          Something went wrong. Please try again.

                          Thanks for your feedback!

                          thanks-feedback-gif