Get Rental Countries

Get a list of countries that have rental phone numbers available.

GET https://api2.sms4sats.com/getRentalCountries

Returns a list of countries that have rental phone numbers available, along with pricing and rental duration.

Query Parameters

Name
Type
Required
Description

service

String

No

Rental service code (e.g. fb for Facebook). Defaults to full for full rental access.

[
    {
        "cc": 6,
        "country": "Indonesia",
        "duration": "2",
        "price": 1368
    },
    {
        "cc": 16,
        "country": "England",
        "duration": "2",
        "price": 4815
    },
    ...
]

Response Fields

Field
Type
Description

cc

Number

Country code to use in Create Receive Order

country

String

Country name

duration

String

Rental duration in weeks

price

Number

Price in satoshis

To create a rental order, pass isRental: true in the Create Receive Order request.

Last updated