Skip to main content
GET
/
api
/
v1
/
customer
/
services
List available services
curl --request GET \
  --url https://virtualsms.io/api/v1/customer/services \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "services": [
    {
      "service_id": "tg",
      "service_name": "Telegram",
      "base_price": 0.2
    },
    {
      "service_id": "wa",
      "service_name": "WhatsApp",
      "base_price": 0.5
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://virtualsms.io/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

API key from virtualsms.io dashboard (Settings -> API tab). Prefix: vsms_

Query Parameters

include_voip
boolean
default:false

Include VoIP numbers in results (default false - physical SIM only)

Response

List of available services

success
boolean
Example:

true

services
object[]