DOMAIN
$DOMAIN =
Getting started
All requests must go to http://api1.$DOMAIN/stubs/handler_api.php
For compatibility with existing software, where there is no our service, but there is our API
For Windows
Add the line 88.99.223.62 domain
in the file C:\Windows\System32\drivers\etc\hosts
, replace domain with the desired domain that is used in the software
For Linux
Add the line 88.99.223.62 domain
in the file /etc/hosts
, replace domain with the desired domain that is used in the software
If the software does not work
Download the root certificate и установите его:
Windows
- Open Chrome
- Open Settings
- Select Manage Certificates
- Select Trusted Root Certificate Authorities
- Import — 5sim_rootCA.crt
Linux
sudo mkdir /usr/share/ca-certificates/extra
sudo cp 5sim_rootCA.crt /usr/share/ca-certificates/extra/5sim_rootCA.crt
Numbers
Request for the number of available numbers
Request example
curl "http://api1.$DOMAIN/stubs/handler_api.php?api_key=$api_key&action=getNumbersStatus&country=$country"
import requests
api_key = 'Your token'
country = 0
params = (
('api_key', api_key),
('country', country),
('action', 'getNumbersStatus')
)
response = requests.get('http://api1.$DOMAIN/stubs/handler_api.php', params=params)
<?php
$api_key = 'Your token';
$ch = curl_init();
$country = 0;
$action = 'getNumbersStatus';
curl_setopt($ch, CURLOPT_URL, 'http://api1.$DOMAIN/stubs/handler_api.php?api_key=' . $api_key . '&country =' . $country . '&action=' . $action);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
Response example
{
"at_0":"330",
"fb_0":"330",
"gm_0":"323",
"go_0":"323",
"ig_0":"326",
"mb_0":"330",
"mm_0":"330",
"ok_0":"330",
"or_0":"315",
"ot_0":"315",
"qw_0":"327",
"tg_0":"329",
"tw_0":"330",
"vi_0":"330",
"vk_0":"292",
"vr_0":"330",
"wa_0":"330",
"wb_0":"328",
"we_0":"330",
"ya_0":"203",
"ym_0":"13"
}
GET / POST - http://api1.$DOMAIN/stubs/handler_api.php?api_key=$api_key&action=getNumbersStatus&country=$country
Returns the number of available numbers
Request Parameters
Name | Type | Required | Desc |
---|---|---|---|
api_key | string | Yes | API-key |
country | number / string | No | Country number / Country name |
List of available countries
Response
Name | Type | Desc |
---|---|---|
serviceName_{0/1} | string | The name of the service before the dash, after the designation of whether to enable redirection. 0 - do not enable. 1 - enable |
total | string | Number of available numbers |
Buy number
Request example
curl "http://api1.$DOMAIN/stubs/handler_api.php?api_key=$api_key&action=getNumber&service=$service&forward=$forward&operator=$operator&country=$country"
import requests
api_key = 'Your token'
country = 0
service = 'hn'
forward = 0
operator = 'megafon'
params = (
('api_key', api_key),
('country', country),
('action', 'getNumber'),
('service', service),
('forward', forward),
('operator', operator)
)
response = requests.get('http://api1.$DOMAIN/stubs/handler_api.php', params=params)
<?php
$api_key = 'Your token';
$ch = curl_init();
$country = 0;
$action = 'getNumbersStatus';
$service = 'hn';
$forward = 0;
$operator = 'megafon';
curl_setopt($ch, CURLOPT_URL, 'http://api1.$DOMAIN/stubs/handler_api.php?api_key=' . $api_key . '&country =' . $country . '&action=' . $action . '&service=' . $service . '&forward=' . $forward . '&operator=' . $operator);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
GET / POST - http://api1.$DOMAIN/stubs/handler_api.php?api_key=$api_key&action=getNumber&service=$service&forward=$forward&operator=$operator&country=$country
Orders a phone number for a specific service
Request Parameters
Name | Type | Required | Desc |
---|---|---|---|
api_key | string | Yes | API-key |
service | string | Yes | Ordering service |
forward | number | No | Enabling redirection. 0 (do not execute), 1 - (execute). The default value is 0 |
operator | string | No | The name of the operator. Accepted values: mts, beeline, any, where any is any operator). Optional parameter, default is any |
country | number / string | No | Country number / Country name |
List of available services
List of available countries
List of available operators
Response
Set status
Request example
curl "http://api1.$DOMAIN/stubs/handler_api.php?api_key=$api_key&action=setStatus&status=$status&id=$id&forward=$forward"
import requests
api_key = 'Your token'
id = 1
status = 1
forward = 0
params = (
('api_key', api_key),
('id', id),
('action', 'setStatus'),
('status', status),
('forward', forward)
)
response = requests.get('http://api1.$DOMAIN/stubs/handler_api.php', params=params)
<?php
$api_key = 'Your token';
$ch = curl_init();
$action = 'setStatus';
$id= 1;
$forward = 0;
$status = 1;
curl_setopt($ch, CURLOPT_URL, 'http://api1.$DOMAIN/stubs/handler_api.php?api_key=' . $api_key . '&id =' . $id . '&action=' . $action . '&forward=' . $forward . '&status=' . $status);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
GET / POST - http://api1.$DOMAIN/stubs/handler_api.php?api_key=$api_key&action=setStatus&status=$status&id=$id&forward=$forward
Set activation status of the number
Request Parameters
Name | Type | Required | Desc |
---|---|---|---|
api_key | string | Yes | API-key |
id | string | Yes | Activation ID |
forward | number | Yes / Нет | The phone number to be forwarded to. Required only if the forward=1 parameter was passed in getNumber |
status | string | No | Activation status |
Possible activation statuses:
- -1 - cancel activation
- 1 - inform about the availability of the number (sms sent to the number)
- 3 - request another code (free of charge)
- 6 - complete activation(if the status was "code received" - marks successful and completes, if it was "preparation" - deletes and places an error, if the status was "waiting for a repeat" - puts the activation in waiting for SMS)
- 8 - notify that the number is used and cancel the activation
Response
Get order status
Request example
curl "http://api1.$DOMAIN/stubs/handler_api.php?api_key=$api_key&action=getStatus&id=$id"
import requests
api_key = 'Your token'
id = 1
params = (
('api_key', api_key),
('id', id),
('action', 'getStatus')
)
response = requests.get('http://api1.$DOMAIN/stubs/handler_api.php', params=params)
<?php
$api_key = 'Your token';
$ch = curl_init();
$action = 'getStatus';
$id= 1;
curl_setopt($ch, CURLOPT_URL, 'http://api1.$DOMAIN/stubs/handler_api.php?api_key=' . $api_key . '&id =' . $id . '&action=' . $action);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
GET / POST - http://api1.$DOMAIN/stubs/handler_api.php?api_key=$api_key&action=getStatus&id=$id
Return order status
Request Parameters
Name | Type | Required | Desc |
---|---|---|---|
api_key | string | Да | API-key |
id | string | Да | Order ID |
Response
Prices
Request for prices
Request example
curl "http://api1.$DOMAIN/stubs/handler_api.php?api_key=$apikey&action=getPrices"
import requests
api_key = 'Your token'
params = (
('api_key', api_key),
('action', 'getPrices')
)
response = requests.get('http://api1.$DOMAIN/stubs/handler_api.php', params=params)
<?php
$api_key = 'Your token';
$ch = curl_init();
$action = 'getPrices';
curl_setopt($ch, CURLOPT_URL, 'http://api1.$DOMAIN/stubs/handler_api.php?api_key=' . $api_key . '&action=' . $action);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
GET / POST - http://api1.$DOMAIN/stubs/handler_api.php?api_key=$apikey&action=getPrices
Returns product prices
Request Parameters
Name | Type | Required | Desc |
---|---|---|---|
api_key | string | Yes | API-key |
Response
Response example
{
"russia":{
"telegram":{
"beeline":{
"cost":8,
"count":0
},
"matrix":{
"cost":8,
"count":0
},
"megafon":{
"cost":8,
"count":0
},
"mts":{
"cost":8,
"count":0
},
"rostelecom":{
"cost":8,
"count":0
},
"tele2":{
"cost":8,
"count":0
},
"virtual15":{
"cost":8,
"count":0
},
"yota":{
"cost":8,
"count":0
}
}
}
}
Request prices by country
Request example
curl "http://api1.$DOMAIN/stubs/handler_api.php?api_key=$apikey&action=getPrices&country=russia"
import requests
api_key = 'Your token'
country = 0
params = (
('api_key', api_key),
('country', country),
('action', 'getPrices')
)
response = requests.get('http://api1.$DOMAIN/stubs/handler_api.php', params=params)
<?php
$api_key = 'Your token';
$ch = curl_init();
$country = 0;
$action = 'getPrices';
curl_setopt($ch, CURLOPT_URL, 'http://api1.$DOMAIN/stubs/handler_api.php?api_key=' . $api_key . '&country =' . $country . '&action=' . $action);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
GET / POST - http://api1.$DOMAIN/stubs/handler_api.php?api_key=$apikey&action=getPrices&country=russia
Returns product prices by country
Request Parameters
Name | Type | Required | Desc |
---|---|---|---|
api_key | string | Yes | API-key |
country | number / string | Yes | Country number / Country name |
List of available countries
Response
Response example
{
"russia":{
"1688":{
"beeline":{
"cost":4,
"count":1260
},
"lycamobile":{
"cost":4,
"count":935
},
"matrix":{
"cost":4,
"count":0
}
}
}
}
Request for a price for a product
Request example
curl "http://api1.$DOMAIN/stubs/handler_api.php?api_key=$apikey&action=getPrices&service=vkontakte"
import requests
api_key = 'Your token'
service = 'vkontakte'
params = (
('api_key', api_key),
('action', 'getPrices'),
('service', service)
)
response = requests.get('http://api1.$DOMAIN/stubs/handler_api.php', params=params)
<?php
$api_key = 'Your token';
$ch = curl_init();
$action = 'getPrices';
$service= 'vkontakte';
curl_setopt($ch, CURLOPT_URL, 'http://api1.$DOMAIN/stubs/handler_api.php?api_key=' . $api_key . '&action=' . $action . '&service=' . $service);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
GET / POST - http://api1.$DOMAIN/stubs/handler_api.php?api_key=$apikey&action=getPrices&service=vkontakte
Returns prices for a specific product
Request Parameters
Name | Type | Required | Desc |
---|---|---|---|
api_key | string | Yes | API-key |
service | string | Yes | Service name |
List of available services
Response
Response example
{
"telegram":{
"afghanistan":{
"virtual18":{
"cost":4,
"count":1260
},
"virtual23":{
"cost":4,
"count":935
},
"virtual4":{
"cost":4,
"count":0
}
}
}
}
Request price by country and product
Request example
curl "http://api1.$DOMAIN/stubs/handler_api.php?api_key=$apikey&action=getPrices&country=russia&service=vkontakte"
import requests
api_key = 'Your token'
country = 0
service = 'vkontakte'
params = (
('api_key', api_key),
('country', country),
('service', service),
('action', 'getPrices')
)
response = requests.get('http://api1.$DOMAIN/stubs/handler_api.php', params=params)
<?php
$api_key = 'Your token';
$ch = curl_init();
$action = 'getPrices';
$country = 0;
$service = 'vkontakte';
curl_setopt($ch, CURLOPT_URL, 'http://api1.$DOMAIN/stubs/handler_api.php?api_key=' . $api_key . '&country =' . $country . '&action=' . $action . '&service =' . $service);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
GET / POST - http://api1.$DOMAIN/stubs/handler_api.php?api_key=$apikey&action=getPrices&country=russia&service=vkontakte
Returns product prices by country and specific product
Request Parameters
Name | Type | Required | Desc |
---|---|---|---|
api_key | string | Yes | API-key |
service | string | Yes | Service name |
country | number / string | Yes | Country number / Country name |
List of available services
List of available countries
Response
Response example
{
"russia":{
"telegram":{
"beeline":{
"cost":8,
"count":0
},
"matrix":{
"cost":8,
"count":0
},
"megafon":{
"cost":8,
"count":0
},
"mts":{
"cost":8,
"count":0
},
"rostelecom":{
"cost":8,
"count":0
},
"tele2":{
"cost":8,
"count":0
},
"virtual15":{
"cost":8,
"count":0
},
"yota":{
"cost":8,
"count":0
}
}
}
}
Balance
Balance request
Request example
curl "http://api1.$DOMAIN/stubs/handler_api.php?api_key=$api_key&action=getBalance"
import requests
api_key = 'Your token'
params = (
('api_key', api_key),
('action', 'getBalance')
)
response = requests.get('http://api1.$DOMAIN/stubs/handler_api.php', params=params)
<?php
$api_key = 'Your token';
$ch = curl_init();
$action = 'getBalance';
curl_setopt($ch, CURLOPT_URL, 'http://api1.$DOMAIN/stubs/handler_api.php?api_key=' . $api_key . '&action=' . $action);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
GET / POST - http://api1.$DOMAIN/stubs/handler_api.php?api_key=$api_key&action=getBalance
Returns user balance
Request Parameters
Name | Type | Required | Desc |
---|---|---|---|
api_key | string | Yes | API-key |
Response
Countries
Available countries
Country number
- 0 - Russia
- 1 - Ukraine
- 2 - Kazakhstan
- 3 - China
- 4 - Philippines
- 5 - Myanmar
- 6 - Indonesia
- 7 - Malaysia
- 8 - Kenya
- 9 - Tanzania
- 10 - Vietnam
- 11 - Kyrgyzstan
- 12 - USA
- 13 - Israel
- 14 - Hong Kong
- 15 - Poland
- 16 - England
- 17 - Madagascar
- 18 - Congo
- 19 - Nigeria
- 20 - Macau
- 21 - Egypt
- 22 - India
- 23 - Ireland
- 24 - Cambodia
- 25 - Laos
- 26 - Haiti
- 27 - Ivory Coast
- 28 - Gambia
- 29 - Serbia
- 31 - South Africa
- 32 - Romania
- 33 - Colombia
- 34 - Estonia
- 35 - Azerbaijan
- 36 - Canada
- 37 - Morocco
- 38 - Ghana
- 39 - Argentina
- 40 - Uzbekistan
- 41 - Cameroon
- 42 - Chad
- 43 - Germany
- 44 - Lithuania
- 45 - Croatia
- 46 - Sweden
- 48 - Netherlands
- 49 - Latvia
- 50 - Austria
- 51 - Belarus
- 52 - Thailand
- 53 - Saudi Arabia
- 54 - Mexico
- 55 - Taiwan
- 56 - Spain
- 58 - Algeria
- 59 - Slovenia
- 60 - Bangladesh
- 61 - Senegal
- 62 - Turkey
- 63 - Czechia
- 64 - Sri Lanka
- 65 - Peru
- 66 - Pakistan
- 67 - New Zealand
- 68 - Guinea
- 70 - Venezuela
- 71 - Ethiopia
- 72 - Mongolia
- 73 - Brazil
- 74 - Afghanistan
- 75 - Uganda
- 76 - Angola
- 77 - Cyprus
- 78 - France
- 79 - Papua New Guinea
- 80 - Mozambique
- 81 - Nepal
- 82 - Belgium
- 83 - Bulgaria
- 84 - Hungary
- 85 - Moldova
- 86 - Italy
- 87 - Paraguay
- 88 - Honduras
- 89 - Tunisia
- 90 - Nicaragua
- 91 - East Timor
- 92 - Bolivia
- 93 - Costa Rica
- 94 - Guatemala
- 96 - Zimbabwe
- 97 - Puertorico
- 99 - Togo
- 100 - Kuwait
- 101 - Salvador
- 103 - Jamaica
- 104 - Trinidad and Tobago
- 105 - Ecuador
- 106 - Swaziland
- 107 - Oman
- 108 - Bosnia and Herzegovina
- 109 - Dominican Republic
- 112 - Panama
- 114 - Mauritania
- 115 - Sierra Leone
- 116 - Jordan
- 117 - Portugal
- 118 - Barbados
- 119 - Burundi
- 120 - Benin
- 123 - Botswana
- 128 - Georgia
- 129 - Greece
- 130 - Guinea-Bissau
- 131 - Guyana
- 134 - Saint Kitts and Nevis
- 135 - Liberia
- 136 - Lesotho
- 137 - Malawi
- 138 - Namibia
- 140 - Rwanda
- 141 - Slovakia
- 142 - Suriname
- 143 - Tajikistan
- 145 - Bahrain
- 146 - Reunion
- 147 - Zambia
- 148 - Armenia
- 152 - Burkina Faso
- 154 - Gabon
- 155 - Albania
- 156 - Uruguay
- 157 - Mauritius
- 158 - Bhutan
- 159 - Maldives
- 160 - Guadeloupe
- 161 - Turkmenistan
- 162 - French Guiana
- 163 - Finland
- 164 - Saint Lucia
- 165 - Luxembourg
- 166 - Saint Vincent and the Grenadines
- 167 - Equatorial Guinea
- 168 - Djibouti
- 169 - Antigua and Barbuda
- 170 - Cayman Islands
- 171 - Montenegro
- 173 - Switzerland
- 174 - Norway
- 175 - Australia
- 176 - Eritrea
- 178 - Sao Tome and Principe
- 179 - Aruba
- 180 - Montserrat
- 181 - Anguilla
- 182 - Japan
- 183 - North Macedonia
- 184 - Republic of Seychelles
- 185 - New Caledonia
- 186 - Cape Verde
You can also use the full name of the country:
- afghanistan - Afghanistan
- albania - Albania
- algeria - Algeria
- angola - Angola
- anguilla - Anguilla
- antiguaandbarbuda - Antigua and Barbuda
- argentina - Argentina
- armenia - Armenia
- aruba - Aruba
- australia - Australia
- austria - Austria
- azerbaijan - Azerbaijan
- bahamas - Bahamas
- bahrain - Bahrain
- bangladesh - Bangladesh
- barbados - Barbados
- belarus - Belarus
- belgium - Belgium
- belize - Belize
- benin - Benin
- bhutane - Bhutan
- bih - Bosnia and Herzegovina
- bolivia - Bolivia
- botswana - Botswana
- brazil - Brazil
- bulgaria - Bulgaria
- burkinafaso - Burkina Faso
- burundi - Burundi
- cambodia - Cambodia
- cameroon - Cameroon
- canada - Canada
- capeverde - Cape Verde
- caymanislands - Cayman Islands
- chad - Chad
- chile - Chile
- china - China
- colombia - Colombia
- comoros - Comoros
- congo - Congo
- costarica - Costa Rica
- croatia - Croatia
- cyprus - Cyprus
- czech - Czechia
- djibouti - Djibouti
- dominica - Dominica
- dominicana - Dominican Republic
- easttimor - East Timor
- ecuador - Ecuador
- egypt - Egypt
- england - England
- equatorialguinea - Equatorial Guinea
- eritrea - Eritrea
- estonia - Estonia
- ethiopia - Ethiopia
- finland - Finland
- france - France
- frenchguiana - French Guiana
- gabon - Gabon
- gambia - Gambia
- georgia - Georgia
- germany - Germany
- ghana - Ghana
- greece - Greece
- grenada - Grenada
- guadeloupe - Guadeloupe
- guatemala - Guatemala
- guinea - Guinea
- guineabissau - Guinea-Bissau
- guyana - Guyana
- haiti - Haiti
- honduras - Honduras
- hongkong - Hong Kong
- hungary - Hungary
- india - India
- indonesia - Indonesia
- ireland - Ireland
- israel - Israel
- italy - Italy
- ivorycoast - Ivory Coast
- jamaica - Jamaica
- japan - Japan
- jordan - Jordan
- kazakhstan - Kazakhstan
- kenya - Kenya
- kuwait - Kuwait
- kyrgyzstan - Kyrgyzstan
- laos - Laos
- latvia - Latvia
- lesotho - Lesotho
- liberia - Liberia
- lithuania - Lithuania
- luxembourg - Luxembourg
- macau - Macau
- madagascar - Madagascar
- malawi - Malawi
- malaysia - Malaysia
- maldives - Maldives
- mauritania - Mauritania
- mauritius - Mauritius
- mexico - Mexico
- moldova - Moldova
- mongolia - Mongolia
- montenegro - Montenegro
- montserrat - Montserrat
- morocco - Morocco
- mozambique - Mozambique
- myanmar - Myanmar
- namibia - Namibia
- nepal - Nepal
- netherlands - Netherlands
- newcaledonia - New Caledonia
- newzealand - New Zealand
- nicaragua - Nicaragua
- niger - Niger
- nigeria - Nigeria
- northmacedonia - North Macedonia
- norway - Norway
- oman - Oman
- pakistan - Pakistan
- panama - Panama
- papuanewguinea - Papua New Guinea
- paraguay - Paraguay
- peru - Peru
- philippines - Philippines
- poland - Poland
- portugal - Portugal
- puertorico - Puertorico
- reunion - Reunion
- romania - Romania
- russia - Russia
- rwanda - Rwanda
- saintkittsandnevis - Saint Kitts and Nevis
- saintlucia - Saint Lucia
- saintvincentandgrenadines - Saint Vincent and the Grenadines
- salvador - Salvador
- samoa - Samoa
- saotomeandprincipe - Sao Tome and Principe
- saudiarabia - Saudi Arabia
- senegal - Senegal
- serbia - Serbia
- seychelles - Republic of Seychelles
- sierraleone - Sierra Leone
- singapore - Singapore
- slovakia - Slovakia
- slovenia - Slovenia
- solomonislands - Solomon Islands
- southafrica - South Africa
- spain - Spain
- srilanka - Sri Lanka
- suriname - Suriname
- swaziland - Swaziland
- sweden - Sweden
- switzerland - Switzerland
- taiwan - Taiwan
- tajikistan - Tajikistan
- tanzania - Tanzania
- thailand - Thailand
- tit - Trinidad and Tobago
- togo - Togo
- tonga - Tonga
- tunisia - Tunisia
- turkey - Turkey
- turkmenistan - Turkmenistan
- turksandcaicos - Turks and Caicos Island
- uganda - Uganda
- ukraine - Ukraine
- uruguay - Uruguay
- usa - USA
- uzbekistan - Uzbekistan
- venezuela - Venezuela
- vietnam - Vietnam
- virginislands - British Virgin Islands
- zambia - Zambia
- zimbabwe - Zimbabwe
Services
Available services
- 1688 - hn
- 1xbet - wj
- 32red - qi
- 888casino - ll
- 99app - ki
- adidas - an
- agroinform - qu
- airbnb - uk
- airtel - zl
- airtel - wf
- aitu - jj
- alfa - bt
- algida - lp
- alibaba - ab
- aliexpress - hx
- aliexpress - al
- alipay - hw
- amasia - yo
- amazon - am
- aol - pm
- apple - wx
- astropay - asp
- auchan - st
- avito - av
- avon - ff
- b4ucabs - bu
- baidu - li
- banqi - vc
- bigolive - bl
- billmill - ri
- bisu - el
- bitaqaty - pt
- bitclout - lt
- blablacar - ua
- blizzard - bz
- blued - qn
- bolt - tx
- brand20ua - vo
- burgerking - ip
- bykea - iu
- cafebazaar - uo
- caixa - my
- careem - ls
- carousell - gj
- cdkeys - pq
- citaprevia - si
- citymobil - yf
- cliqq - fe
- clubhouse - et
- cmtcuzdan - ql
- coinbase - re
- coinfield - vw
- craigslist - wc
- cryptocom - ti
- dbrua - tj
- deliveroo - zk
- delivery - dt
- dent - zz
- dhani - os
- didi - xk
- digikala - zv
- discord - ds
- disneyhotstar - ud
- divar - dw
- dodopizza - sd
- dominospizza - dz
- dostavista - sv
- douyu - ak
- dream11 - ve
- drom - hz
- drugvokrug - we
- easypay - rz
- ebay - dh
- ebikegewinnspiel - le
- eneba - uf
- ezbuy - db
- faberlic - rm
- facebook - fb
- fiqsy - ug
- fiverr - cn
- foodpanda - nz
- foody - kw
- freecharge - otp
- gamearena - wn
- gamekit - pa
- gamer - ed
- getir - ul
- gett - gt
- gg - qe
- gittigidiyor - nk
- global24 - iz
- globaltel - gl
- globus - hm
- glovo - aq
- google - go
- grabtaxi - jg
- grindr - yw
- hamrahaval - rp
- happn - df
- haraj - au
- hepsiburadacom - gx
- hezzl - ss
- hily - rt
- hopi - jl
- hqtrivia - kp
- humblebundle - un
- humta - gv
- huya - pp
- icq - iq
- icrypex - cx
- ifood - pd
- immowelt - ib
- imo - im
- inboxlv - iv
- indriver - rl
- ininal - hy
- instagram - ig
- iqos - il
- ivi - jc
- jd - za
- jkf - hr
- justdating - pu
- justdial - jdl
- kakaotalk - kt
- karusel - de
- keybase - bf
- kotak811 - rv
- kucoinplay - sq
- kufarby - kb
- kvartplata - yb
- kwai - vp
- lazada - dl
- lenta - rd
- line - me
- linkedin - tn
- livescore - eu
- magnit - mg
- magnolia - up
- mailru - ma
- mamba - fd
- mcdonalds - ry
- mega - qr
- mercado - cq
- michat - mc
- microsoft - mm
- miloan - ey
- miratorg - op
- mobile01 - wk
- momo - hc
- monese - py
- monobank - ji
- mosru - ce
- mrgreen - lw
- mtscashback - da
- myfishka - qa
- myglo - ae
- mylove - fy
- mymusictaste - mu
- mzadqatar - jm
- nana - na
- naver - nv
- ncsoft - sw
- netflix - nf
- nhseven - nh7
- nifty - px
- nike - ew
- nrjmusicawards - pg
- nttgame - zy
- odnoklassniki - ok
- offerup - zm
- offgamers - uz
- okta - lr
- olacabs - ly
- olx - sn
- onlinerby - ob
- oriflame - qh
- other - ot
- ozon - sg
- paddypower - cw
- pairs - dk
- papara - zr
- paxful - dn
- payberry - qb
- paycell - xz
- paypal - ts
- paysend - tr
- paytm - ge
- peoplecom - pe
- perekrestok - pl
- pgbonus - fx
- picpay - ev
- pof - pf
- pokec - pk
- potato - fj
- powerkredite - dx
- prajmeriz2020 - qc
- premiumone - po
- prom - cm
- protonmail - dp
- protp - rra
- pureplatfrom - lk
- pyaterochka - bd
- pyromusic - ny
- q12trivia - vf
- qiwiwallet - qw
- quipp - cc
- rambler - tc
- rediffmail - co
- rosakhutor - qm
- rsa - cy
- rutube - ui
- samokat - jr
- seosprint - vv
- sheerid - rx
- shopee - ka
- sikayetvar - fs
- skout - wg
- snapchat - fu
- snappfood - ph
- sneakersnstuff - sf
- socios - ia
- sportmaster - yk
- spothit - cd
- ssoidnet - la
- steam - mt
- surveytime - gd
- swvl - tq
- taksheel - ei
- tango - xr
- tantan - ta
- taobao - qd
- telegram - tg
- tencentqq - qq
- ticketmaster - gp
- tiktok - lf
- tinder - oi
- tosla - nr
- touchance - fm
- trendyol - pr
- truecaller - tl
- twitch - hb
- twitter - tw
- uber - ub
- ukrnet - hu
- vernyj - nb
- viber - vi
- vitajekspress - bj
- vkontakte - vk
- wechat - wb
- weibo - kf
- weststein - th
- whatsapp - wa
- wildberries - uu
- wingmoney - jb
- wish - xv
- wmaraci - xl
- wolt - rr
- yaay - vn
- yahoo - mb
- yalla - yl
- yandex - ya
- yemeksepeti - yi
- youla - ym
- youstar - gb
- zalo - mj
- zoho - zh
You can also use the full name of the service:
- 1688
- 1xbet
- 23red
- 32red
- 888casino
- 99app
- ace2three
- adidas
- agroinform
- airbnb
- airtel
- aitu
- akelni
- alfa
- algida
- alibaba
- aliexpress
- alipay
- amasia
- amazon
- aol
- apple
- astropay
- auchan
- avito
- avon
- azino
- b4ucabs
- baidu
- banqi
- bigolive
- billmill
- bisu
- bitaqaty
- bitclout
- bittube
- blablacar
- blizzard
- blockchain
- blued
- bolt
- brand20ua
- burgerking
- bykea
- cafebazaar
- caixa
- careem
- carousell
- cdkeys
- cekkazan
- citaprevia
- citymobil
- clickentregas
- cliqq
- clubhouse
- cmtcuzdan
- coinbase
- coinfield
- craigslist
- cryptocom
- dbrua
- deliveroo
- delivery
- dent
- dhani
- didi
- digikala
- discord
- disneyhotstar
- divar
- dixy
- dodopizza
- domdara
- dominospizza
- dostavista
- douyu
- dream11
- drom
- drugvokrug
- dukascopy
- easypay
- ebay
- ebikegewinnspiel
- edgeless
- electroneum
- eneba
- ezbuy
- faberlic
- fiqsy
- fiverr
- foodpanda
- foody
- forwarding
- freecharge
- galaxy
- gamearena
- gameflip
- gamekit
- gamer
- gcash
- get
- getir
- gett
- gg
- gittigidiyor
- global24
- globaltel
- globus
- glovo
- grabtaxi
- green
- grindr
- hamrahaval
- happn
- haraj
- hepsiburadacom
- hezzl
- hily
- hopi
- hqtrivia
- humblebundle
- humta
- huya
- icard
- icq
- icrypex
- ifood
- immowelt
- imo
- inboxlv
- indriver
- ininal
- iost
- iqos
- ivi
- iyc
- jd
- jkf
- justdating
- justdial
- kakaotalk
- karusel
- keybase
- komandacard
- kotak811
- kucoinplay
- kufarby
- kvartplata
- kwai
- lazada
- lbry
- lenta
- lianxin
- line
- livescore
- magnit
- magnolia
- mailru
- mamba
- mcdonalds
- meetme
- mega
- mercado
- michat
- microsoft
- miloan
- miratorg
- mobile01
- momo
- monese
- monobank
- mosru
- mrgreen
- mtscashback
- myfishka
- myglo
- mylove
- mymusictaste
- mzadqatar
- nana
- naver
- ncsoft
- netflix
- nhseven
- nifty
- nike
- nimses
- nrjmusicawards
- nttgame
- odnoklassniki
- offerup
- offgamers
- okcupid
- okey
- okta
- olacabs
- olx
- onlinerby
- openpoint
- oraclecloud
- oriflame
- other
- ozon
- paddypower
- pairs
- papara
- paxful
- payberry
- paycell
- paymaya
- paypal
- paysend
- paytm
- peoplecom
- perekrestok
- pgbonus
- picpay
- pof
- pokec
- pokermaster
- potato
- powerkredite
- prajmeriz2020
- premiumone
- prom
- proton
- protonmail
- protp
- pubg
- pureplatfrom
- pyaterochka
- pyromusic
- q12trivia
- qiwiwallet
- quipp
- rakuten
- rambler
- rediffmail
- reuse
- ripkord
- rosakhutor
- rsa
- rutube
- samokat
- seosprint
- sheerid
- shopee
- signal
- sikayetvar
- skout
- snapchat
- snappfood
- sneakersnstuff
- socios
- sportmaster
- spothit
- ssoidnet
- steam
- surveytime
- swvl
- taksheel
- tango
- tantan
- taobao
- telegram
- tencentqq
- ticketmaster
- tiktok
- tinder
- tosla
- totalcoin
- touchance
- trendyol
- truecaller
- twitch
- uber
- ukrnet
- uploaded
- vernyi
- vernyj
- viber
- vitajekspress
- vkontakte
- voopee
- weku
- weststein
- wildberries
- wingmoney
- winston
- wish
- wmaraci
- wolt
- yaay
- yahoo
- yalla
- yandex
- yemeksepeti
- youdo
- youla
- youstar
- zalo
- zoho
- zomato
Operators
Available operators
- any (any operator)
- 019
- activ (virt10)
- altel (virt11)
- beeline (virt1)
- claro
- ee
- globe
- kcell (virt12)
- lycamobile (virt14)
- matrix
- megafon (virt3)
- mts (virt2)
- orange
- pildyk
- play
- redbullmobile
- rostelecom (virt5)
- smart
- sun (virt8)
- tele2 (virt4)
- three
- tigo
- tmobile
- tnt (virt9)
- virginmobile
- virtual2
- virtual4
- virtual5
- virtual7
- virtual8
- virtual12
- virtual15
- virtual16
- virtual17
- virtual18
- virtual19
- virtual20
- virtual21
- virtual22
- virtual23
- virtual24
- virtual25
- virtual26
- virtual27
- virtual28
- vodafone (virt15)
- yota (virt16)
- zz