Integrate CheckWA seamlessly into your application
POST: https://checkwa.online/api/v1/check.php
With country code and number in different parameters:
{
"user": "YOUR-API-USER", // Username
"apikey": "YOUR-API-KEY", // Api key
"token": "193e123x2", // Unique ID for indentify response (optional)
"callback": "https://www.callbackurl.com/", // Callback URL for response (optional)
"num": "666666666", // Number without country code
"cod": "34" // Country code
}
With country code and number in same parameter:
{
"user": "YOUR-API-USER", // Username
"apikey": "YOUR-API-KEY", // Api key
"token": "193e123x2", // Unique ID for indentify response (optional)
"callback": "https://www.callbackurl.com/", // Callback URL for response (optional)
"number": "34666666666" // Number with country code
}
(application/json)
{
"code": "1", // Response code (1 = uses whatsapp, 0 = don’t uses whatsapp)
"token": "193e123x2", // Unique ID for indetify response
"callback": "https://www.callbackurl.com/" // Your calllback URL for response
}
(application/json)
Example for response when number uses WhatsApp:
{
"code": "1", // 1 = Uses WhatsApp, 0 = Don’t uses WhatsApp
"num": "34666666666", // Number (with country code)
"token": "193e123x2"
}
Example for response when number don’t uses WhatsApp:
{
"code": "0",
"num": "34666666667",
"token": "193e123x2"
}
POST: https://checkwa.online/api/v1/bulk.php
{
"user": "YOUR-API-USER",
"apikey": "YOUR-API-KEY",
"token": "193e123x2",
"callback": "https://www.callbackurl.com/",
"numbers": ["972542654444","97239602767","972545271265"]
}
POST: https://checkwa.online/api/v1/credit.php
{
"user": "YOUR-API-USER",
"apikey": "YOUR-API-KEY"
}
Headers
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS
Access-Control-Allow-Headers: x-test-header, Origin, X-Requested-With, Content-Type, Accept
Your server must have a valid SSL certificate. (These parameters are mandatory, otherwise we will not be able to send the results)
Example file endpoint: https://w2.checkwa.com/return.zip