Endpoint

GET https://sms.phones.inc/sms/services

Overview

List the services you can rent a number for, with the current price of each in credits. Prices adjust with availability and may change at any time — check this endpoint for the price you’ll be charged by POST /sms/rent.

Response

Rental responses do not use the ok envelope — success is a plain JSON object; errors are {"error": "..."} with a non-200 status. See Response.
services
object
Map of service name to its current price in credits.

Errors

StatusErrorMeaning
503Number rental is not configuredRental is disabled on this deployment
curl https://sms.phones.inc/sms/services \
  -H "API-KEY: sk_your_api_key"
{
  "services": {
    "apple": 1.10,
    "google": 1.40,
    "instagram": 0.88,
    "tiktok": 0.75
  }
}