API Documentation
Base URL: https://pva24.com/api/
Your API Key: 'Login to get your API key.'
Request (GET):
cURL:
curl --location --request GET ' https://pva24.com/api/ API_KEY?country_id= COUNTRY_ID&project_id= PROJECT_ID'Example for project Tinder, Country United States:
curl --location --request GET ' https://pva24.com/api/f14acbe8-43d6-4a43-b2f0-26326deeaa8c?country_id=US&project_id=46'Parameter | Value | Required |
---|---|---|
API_KEY | Your API key, check avobe. | Yes |
COUNTRY_ID | Please check country list. | Yes |
PROJECT_ID | Please check project list. | Yes |
Response (JSON):
Error:
Number is unavailable : {"meta": "error", "data": "No numbers available, retry later"}Number is Duplicate : {"meta": "501", "data": "Duplicate number."}
Running out of balance : {"meta": "402", "data": "Insufficient balance!"}
Wrong API_KEY : {"meta": "401", "data": "Unauthorized"}
And more...
Success:
{"meta": 200, "data": { "id": 2181, "sid": 174568, "did": "15183904996"} }Request (GET):
cURL:
curl --location --request GET ' https://pva24.com/api/code/ API_KEY?sid= SID'Example:
curl --location --request GET ' https://pva24.com/api/code/f14acbe8-43d6-4a43-b2f0-26326deeaa8c?sid=174568'Parameter | Value | Required |
---|---|---|
API_KEY | Your API key, check avobe. | Yes |
SID | Obtained with "Get Number" command. | Yes |
Response (JSON):
Error:
Wrong SID : {"meta": "404", "data": "No record found!!"}Wrong API_KEY : {"meta": "401", "data": "Unauthorized"}
Success:
{ "meta": 200, "data": { "id": "2181", "did": "15183904996", "code": Your Tinder code is 772940 Don’t share, "created": "18 minutes ago", "updated": "1 minute ago", "status": 2, "left": 0 } }Value | Description |
---|---|
data.status | 0 = No code received yet, we're waiting. 1 = Code received. 2 = No code received, and timeout. |
data.left | How much second left for timeout. |
Name | Dialing Code | Alpha-2 code | Alpha-3 code |
---|---|---|---|
Login to get list |
Name | Code |
---|---|
Login to get list |
Request (POST):
cURL:
curl --location --request POST ' https://pva24.com/api/release/ API_KEY' \ --form ' SID=174568'Example:
curl --location --request POST ' https://pva24.com/api/release/f14acbe8-43d6-4a43-b2f0-26326deeaa8c' \ --form ' sid=174568Parameter | Value | Required |
---|---|---|
API_KEY | Your API key, check avobe. | Yes |
SID | Obtained with "Get Number" command. | Yes |
Response (JSON):
Error:
Wrong SID : {"meta": "404", "data": "No record found!!"}Wrong API_KEY : {"meta": "401", "data": "Unauthorized"}
Success:
{"meta": 200, "data": "Number successfully released."}Request (POST):
cURL:
curl --location --request POST ' https://pva24.com/api/blacklist/ API_KEY' \ --form ' SID=174568'Example:
curl --location --request POST ' https://pva24.com/api/blacklist/f14acbe8-43d6-4a43-b2f0-26326deeaa8c' \ --form ' sid=174568Parameter | Value | Required |
---|---|---|
API_KEY | Your API key, check avobe. | Yes |
SID | Obtained with "Get Number" command. | Yes |
Response (JSON):
Error:
Wrong SID : {"meta": "404", "data": "No record found!!"}Wrong API_KEY : {"meta": "401", "data": "Unauthorized"}