cURL
curl --request POST \ --url https://api.contiguity.com/numbers/lease/{number} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "billing_method": "monthly" }'
{ "id": "req_xxxxxxxxxxxxxxxx", "timestamp": 1755722229870, "api_version": "v2025.8.20", "object": "response", "data": { "lease_id": "lsd_1234567890", "number": "+13059478667", "status": "active", "billing": { "method": "monthly", "price": { "currency": "USD", "monthly_rate": 19.99, "upfront_fee": 2.99 }, "period": { "start": 1718851200, "end": "<any>" } } } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Phone number in E.164 format
"+13059478667"
Lease a specific phone number
The response is of type object.
object
Was this page helpful?