Search for a virtual number using Python

Use this guide to setup your Python application for use with the Numbers API to rent the first available Sinch virtual number and provision it with your SMS service plan.

Note:

Before you can get started, you need the following already set up:

Steps:
  1. Install the Sinch Python SDK.
  2. Set up your Python application
  3. Rent the first available virtual number and provisoning it for use with SMS.

Installing the SDK

The easiest way to install the SDK is using pip:

  1. Open a command prompt or terminal to the local repository folder.
  2. Execute the following command:
    Copy
    Copied
    pip install sinch

Before initializing a client using this SDK, you'll need three pieces of information:

  • Your Project ID
  • An access key ID
  • An access key Secret
These values can be found on the Access Keys page of the Customer Dashboard. You can also create new access key IDs and Secrets, if required.
Note:
If you have trouble accessing the above link, ensure that you have gained access to the Conversation API by accepting the corresponding terms and conditions.

Set up your Python application

Create a new file named rent-any-number.py and paste the provided code found on this page into the file.

Modify your application

The code provided includes placeholder parameters. You'll need to update the parameters detailed in the following subsections with your values.

Initialize the client

Before initializing a client using this SDK, you'll need three pieces of information:

  • Your Project ID
  • An access key ID
  • An access key Secret
These values can be found on the Access Keys page of the Customer Dashboard. You can also create new access key IDs and Secrets, if required.
Note:
If you have trouble accessing the above link, ensure that you have gained access to the Conversation API by accepting the corresponding terms and conditions.

Fill in remaining parameters

  1. Assign your values to the following required parameters:
ParameterYour value
YOUR_region_codeThe two letter abbreviation of the country for which you'd like a number. ISO 3166–1 alpha–2.
YOUR_number_typeThe type of number you would like to rent. Available options are: MOBILE, LOCAL, or TOLL_FREE. Note that 10DLC numbers should be set to LOCAL.
YOUR_service-plan-idYour SMS service plan ID. This is required for SMS configuration.
  1. Save the file.

Rent the first available virtual number

Execute the code to rent the first available number. Open a command prompt or terminal to the location where your Python file is saved and run the following command:

Copy
Copied
python rent-any-number.py

Response

These steps should return a response that looks like the following:

Copy
Copied
RentAnyNumberResponse(
phone_number='YOUR_response_phone_number', 
project_id='YOUR_project_id', 
region_code='US', 
type='LOCAL', 
capability=['SMS', 'VOICE'], 
money={'currencyCode': 'USD', 'amount': '1.00'}, 
payment_interval_months=1, 
next_charge_date='2024-01-08T16:47:05.720759Z', 
expire_at=None, 
sms_configuration={'servicePlanId': '', 'scheduledProvisioning': {'servicePlanId': 'YOUR_service_plan_id', 'status': 'WAITING', 'lastUpdatedTime': '2023-12-08T16:47:07.167258Z', 'campaignId': '', 'errorCodes': []}, 'campaignId': ''}, 
voice_configuration={'appId': '', 'scheduledVoiceProvisioning': None, 'lastUpdatedTime': None}, callback_url=''
)

Next steps

Send a message to yourself using the SMS API to verify that the configuration was successful.

Additional resources

We'd love to hear from you!
Rate this content:
Still have a question?
 
Ask the community.