Required Parameters: API Key and Number
Curl Command:
curl --location --request GET 'https://app.landlineremover.com/api/check-number?apikey=Your_API_KEY&number=0123456789'
Using Browser: (You can paste below code into new tab)
https://app.landlineremover.com/api/check-number?apikey=Your_API_KEY&number=0123456789
Using Python:
import requests
url = "https://app.landlineremover.com/api/check-number?apikey=Your_API_KEY&number=0123456789"
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'
--header 'Cookie: csrftoken=xxxxxxxxxxxxxxxxxxxxxxxxxx'
--data '{ "numbers": [ "xxxxxxxxxx", "xxxxxxxxxx", "xxxxxxxxxx" ]}'
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": "XXX-XXX-XXX-XXX"
}
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": "XXX-XXX-XXX-XXX",
"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"
}