POST
/
lease
/
{number}
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>"
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

number
string
required

Phone number in E.164 format

Example:

"+13059478667"

Body

application/json

Response

200
application/json

Lease a specific phone number

The response is of type object.