Skip to main content

Services

Get a list of services that support SMS reception.

Get Services List

Retrieve all available services with their codes.

Endpoint

GET /api/v1/numbers/services/

Request

curl -X 'GET' \
'https://app.cyberyozh.com/api/v1/numbers/services/' \
-H 'accept: application/json' \
-H 'X-Api-Key: your_api_key_here'

Response

[
{
"name": "Twitter",
"code": "tw"
},
{
"name": "eBay",
"code": "dh"
},
{
"name": "Naver",
"code": "nv"
},
{
"name": "Telegram",
"code": "tg"
}
]

Response Fields

FieldTypeDescription
namestringService display name
codestringService code to use when ordering numbers
ServiceCodeDescription
TelegramtgMessaging platform
TwittertwSocial media
WhatsAppwaMessaging app
GooglegoGoogle services
FacebookfbSocial network

Usage Example

import requests

headers = {
'accept': 'application/json',
'X-Api-Key': 'your_api_key_here'
}

response = requests.get(
'https://app.cyberyozh.com/api/v1/numbers/services/',
headers=headers
)

services = response.json()

# Find Telegram
telegram = next(s for s in services if s['code'] == 'tg')
print(f"Service: {telegram['name']} (code: {telegram['code']})")

Notes

  • Service codes are used in the /search/ and /numbers/ endpoints
  • Not all services are available in all countries
  • Use the /search/ endpoint to check availability for specific country-service combinations