Note! The Czech Republic, Lithuania, Latvia, Estonia and Germany phone numbers are activated instantly for all services except PayPal + Ebay.
Select country
Select rental period
Total
{{ resultText }}
Select service
Data updating automatically every 30 seconds. Date and time in timezone of your browser.
Status | Phone number | Service | Expire at | |||||||
---|---|---|---|---|---|---|---|---|---|---|
{{ getStatusText(order.state) }} | {{ order.ccode }} {{ order.pnumber }} | {{ order.sname }} | {{ (new Date(order.until * 1000)).toLocaleString() }} |
|
||||||
|
Why do not receive SMS?
First, check that you activated phone number before send SMS. We are recommend to use private proxy, clear cache and cookie of browser when you create accounts using numbers.
Why button for prolongation disabled?
You can prolong number only if before expiring date left less 7 days
What is max period for rent number?
Max guarantee period for the rent - 90 days.
What to do if I did not manage to renew the number manually??
You can contact our support team and we will renew the number manually, but the cost of such an extension is: for overdue days + a month in advance, excluding discounts.
Why is the number not activated for a long time?
After the activation request, your number appears in a certain queue for activation, where there are numbers and other users, so activation of the number may take some time. On average, a phone number is activated in 10-15 minutes, but it can take longer. If the number is not activated for a very long period of time, then you can contact the support team and we will try to resolve the issue.
PHONE NUMBER STAYS ACTIVE FOR 10-30 MINUTES, THEN IS DEACTIVATED
Will there be a refund for unused days upon removal?
We do not refund if you used the number, i.e. received SMS and you had no problems with the number. Refunds are made only when there are unsolvable problems with the number. In most cases, the issue of return is decided individually.
General
Only GET requests are accepted. The server always responds in JSON format. If the request was successful, then the status field will be 1, otherwise 0. If status = 0, then the cause of the error will be indicated in the msg field. Before sending SMS to a number, it must be activated and wait until the state of the order has the corresponding value. Please note that most requests require the user apikey to be specified.
List of available countries
Request
https://smspva.com/api/rent.php?method=getcountries
Response
{ "status": 1, "data": [ { "name": "Россия", // country name "code": "RU" // country code } ] }
List of available services: count, price, etc.
Request
https://smspva.com/api/rent.php?method=getdata&country=RU country - country code
Response
{ "status": 1, "data": [ { "name": "Airbnb", // service name "service": "opt46", // service code "price_day": 6, // price per day "count": 359 // available count } ] }
Rent number
Request
https://smspva.com/api/rent.php?method=create&apikey=yourapikeyhere&dtype=week&dcount=1&country=RU&service=opt6 dtype - type of period: week or month dcount - count type of period, i.e. if dtype=week then counts of weeks country - country code of number service - service code
Response
{ "status": 1, "data": { "id": 40370, // ID of order "pnumber": "9096037108", // phone number without country code "ccode": "+7", // digital country code "service": "opt6", // service code "until": 1587633960 // UNIX timestamp of expire date } }
List of orders
Request
https://smspva.com/api/rent.php?method=orders&apikey=yourapikeyhere
Response
{ "status": 1, "data": [ { "id": 40300, // ID of order "scode": "opt16", // service code "sname": "Instagram", // service name "state": 0, // state of number // 0 - not active, need to activate before send SMS // 1 - active, can receive SMS // 2 - activating process // -1 - phone number not in the system "pnumber": "9096068511", // phone number without country code "ccode": "+7", // digital country code "cname": "RU", // country code "hasnewsms": false, // flag of new SMS "until": 1587552240, // UNIX timestamp of expire date "canprolong": true, // flag of availablity of prolongation "canprolongmax": 162, // max days for prolongation "canprolonguntil": 1634883780 // Unix timestamp for max prolongation "lastonline": 1586947920 // Unix timestamp of last online date of number } ] }
Getting SMS of number
Request
https://smspva.com/api/rent.php?method=sms&id=123&apikey=yourapikeyhere id - ID of order
Response
{ "status": 1, "data": [ { "text": "Code Instagram: 671 094.", // text of SMS "sender": "FACEBOOK", // sender of the SMS "date": 1586948100 // Unix timestamp of receiving date } ] }
Prolongation
Request
https://smspva.com/api/rent.php?id=123&dcount=1&dtype=week&method=prolong&apikey=yourapikeyhere id - ID of order dtype - type of period: week or month dcount - count type of period, i.e. if dtype=week then counts of weeks
Response
{ "status": 1, "data": { "id": 123 // ID of order } }
Activating
Request
https://smspva.com/api/rent.php?method=activate&id=123&apikey=yourapikeyhere id - ID of order
Response
{ "status": 1, "data": { "id": 123 // ID of order } }
Removing
Request
https://smspva.com/api/rent.php?method=delete&id=123&apikey=yourapikeyhere id - ID of order
Response
{ "status": 1, "data": { "id": 123 // ID of order } }