otp/docs

Services

List every service you can buy a number for, with its slug, display name, category, and cheapest price across all countries.

GET/v1/services

List every service you can buy a number for. Each entry carries a service slug (use it when creating an activation), a display name, a category, and the from_price — the cheapest price across all countries, as a USD decimal string.

curl
curl https://api.otp.black/v1/services \
  -H "Authorization: Bearer $API_KEY"
200 OK
[
  { "service": "whatsapp", "name": "WhatsApp", "category": "messenger", "from_price": "0.42" },
  { "service": "telegram", "name": "Telegram", "category": "messenger", "from_price": "0.31" },
  { "service": "google",   "name": "Google",   "category": "email",     "from_price": "0.55" }
]

Fields

  • service — slug used to identify the service in other calls.
  • name — human-readable display name.
  • category — grouping, e.g. messenger, email, social.
  • from_price — lowest available price across countries, USD decimal string.

On this page