Required Parameters: API Key and Number
cURL Command:
curl --location --request GET 'https://app.landlineremover.com/api/check-number?apikey=Your_API_KEY&number=Your_NUMBER'
Using Browser: (You can paste below code into new tab)
https://app.landlineremover.com/api/check-number?apikey=Your_API_KEY&number=Your_NUMBER
Using Python:
import requests
url = "https://app.landlineremover.com/api/check-number?apikey=Your_API_KEY&number=Your_NUMBER"
response = requests.request("GET", url)
print(response.text)
Required Parameters: API Key
cURL Command:
curl --location --request GET 'https://app.landlineremover.com/api/check-credits?apikey=Your_API_KEY'
Using Browser: (You can paste below code into new tab)
https://app.landlineremover.com/api/check-credits?apikey=Your_API_KEY
Using Python:
import requests
url = "https://app.landlineremover.com/api/check-credits?apikey=Your_API_KEY"
response = requests.request("GET", url)
print(response.text)
Required Parameters: API Key and Numbers
cURL Command:
curl --location 'https://app.landlineremover.com/api/bulk-list/'
--header 'Content-Type: application/json'
--header 'apikey: Your_API_KEY'
--data '{ "numbers": [ "Your_FIRST_NUMBER", "Your_SECOND_NUMBER", "Your_THIRD_NUMBER" ]}'
Using cURL, you will receive the following response (Use the result_id from the response): Show/Hide Response
{
"status": "success",
"total_unique_numbers": 4,
"remaining_credits": 4562,
"result_id": "Your_RESULT_ID"
}
Use the result_id from the response of the API and pass it to the Bulk List Details API.
Required Parameters: API Key and result_id (Use the result_id provided in the response of the Bulk List API)
Using the cURLÂ you will get this response: Show/Hide Response
{
"result_id": "Your_RESULT_ID",
"api_status": "COMPLETED",
"total_numbers": 4,
"total_credits_charged": 4,
"reversed_credits_for_duplicates": 0,
"line_type_info": {
"": 1,
"mobile": 3
},
"dnc_type_info": {
"clean": 4
},
"timestamp": "2024-12-26T05:30:11.609035-05:00"
}