
Company Phone Scraper
We Convert Any
Company Name to
Its Phone Numbers
We extract a phone numbers from any company in the world. Just give us the name of the company and get its phone numbers.
Our Chrome Extension
With our chrome extension, you can easily find phones for any company name on the page. Just go to any B2B websites and extract all phones from companies.
Our Features
Professional Service

Very Accurate
Our service is very accurate and scrape all phone numbers from each company.

Very Fast
Our Service is very very fast and can send many responses in seconds.

Very Large
Our service can handle more than two thousands of requests in one second.
Monthly Plans
Cancel anytime

25 Requests / Month
$ 0.0
Personal Plan

5000 Requests / Month
$ 29.9
Small Team Plan

15000 Requests / Month
$ 99.9
Enterprise Plan
Support Bulk Request
You can provide our company names in google spread sheet and send its link to our service, All thing will be done with our service. We extract all phone numbers from your company names list.

START YOUR FREE PLAN
easy sign up and use your free plans to test our service.
API Requests
Clients
Success Rate
Companies in Database
Multiple Language Support
Our API supports multiple language with easy integration with any other services.
import requests
url = "https://phone-scraper.com/api/ps"
querystring = {"companyName":"swifttrans","api_key":"your_api_key"}
payload = ""
headers = {
'content-type': "application/json"
}
response = requests.request("GET", url, data=payload, headers=headers, params=querystring)
print(response.text)
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://phone-scraper.com/api/ps?companyName=swifttrans&api_key=your_api_key")
.get(null)
.addHeader("content-type", "application/json")
.build();
Response response = client.newCall(request).execute();
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://phone-scraper.com/api/ps?companyName=swifttrans&api_key=your_api_key",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => "",
CURLOPT_HTTPHEADER => array(
"content-type: application/json"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://phone-scraper.com/api/ps?companyName=swifttrans&api_key=your_api_key")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Get.new(url)
request["content-type"] = 'application/json'
response = http.request(request)
puts response.read_body
var client = new RestClient("https://phone-scraper.com/api/ps?companyName=swifttrans&api_key=your_api_key");
var request = new RestRequest(Method.GET);
request.AddHeader("content-type", "application/json");
IRestResponse response = client.Execute(request);
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://phone-scraper.com/api/ps?companyName=swifttrans&api_key=your_api_key"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("content-type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
var settings = {
"async": true,
"crossDomain": true,
"url": "https://phone-scraper.com/api/ps?companyName=swifttrans&api_key=your_api_key",
"method": "GET",
"headers": {
"content-type": "application/json"
},
"data": {}
}
$.ajax(settings).done(function (response) {
console.log(response);
});