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
| Field | Type | Description |
|---|---|---|
name | string | Service display name |
code | string | Service code to use when ordering numbers |
Popular Services
| Service | Code | Description |
|---|---|---|
| Telegram | tg | Messaging platform |
tw | Social media | |
wa | Messaging app | |
go | Google services | |
fb | Social 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