Crunchbase Company Data
This API provides a streamlined interface to fetch structured company directly from Crunchbase, making it easy to power your applications with up-to-date business intelligence.
cURL 'https://api.enrich.so/v1/api/crunchbase-data?domain=<example.com>' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'
const axios = require('axios');
axios.get('https://api.enrich.so/v1/api/crunchbase-data?domain=<example.com>', {
headers: {accept: 'application/json', Authorization: 'Bearer <token>'}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
import requests
payload = {'domain': 'example.com'}
headers = {'accept': 'application/json', 'authorization': 'Bearer <token>'}
resp = requests.get('https://api.enrich.so/v1/api/crunchbase-data', params=payload, headers=headers)
print (resp.text)
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://api.enrich.so/v1/api/crunchbase-data?domain=<example.com>")
.get()
.addHeader("accept", "application/json")
.addHeader("authorization", "Bearer <token>")
.build();
Response response = client.newCall(request).execute();
require 'uri'
require 'net/http'
url = URI("https://api.enrich.so/v1/api/crunchbase-data?domain=<example.com>")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["accept"] = 'application/json'
request["authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.enrich.so/v1/api/crunchbase-data?domain=<example.com>",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"accept: application/json",
"authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
Example response
{
"success": true,
"message": "Crunchbase data info found.",
"funding": {
"name": "Clay",
"legalName": "Clay Labs Inc.",
"description": "Clay offers creative tools for growth teams to enhance customer research.",
"linkedinURL": "https://www.linkedin.com/company/clay-run",
"website": "https://clay.com/",
"foundedDate": "Jul 25, 2017",
"employeesCount": "51-100",
"fundingInfo": {
"lastRound": "Series B",
"lastRoundFunding": "$40 million",
"totalFunding": "$102 million",
"companyValuation": "$1.25 billion"
},
"totalInvestors": 8,
"location": "New York, United States",
"founders": [
"Kareem Amin",
"Nicolae Rusan",
"Varun Anand"
],
"logo": "https://images.crunchbase.com/image/upload/c_pad,h_45,w_45,f_auto,b_white,q_auto:eco,dpr_1/299541eb583641fca14884763666ea39",
"services": [
"Artificial Intelligence (AI)",
"Developer Tools",
"Information Technology",
"Productivity Tools",
"Software"
],
"itSpend": "$486.2K",
"monthlyWebVisits": "829,788"
},
"total_credits": 16683,
"credits_used": 58,
"credits_remaining": 16625
}
Status code: 404 NOT FOUND
{
"error": true,
"message": "Failed to fetch company crunchbase data."
}
Last updated