/crunchbase/company
curl --request POST \
--url https://api.anysite.io/api/crunchbase/company \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"company": "<string>",
"timeout": 300
}
'import requests
url = "https://api.anysite.io/api/crunchbase/company"
payload = {
"company": "<string>",
"timeout": 300
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({company: '<string>', timeout: 300})
};
fetch('https://api.anysite.io/api/crunchbase/company', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/crunchbase/company",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'company' => '<string>',
'timeout' => 300
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/crunchbase/company"
payload := strings.NewReader("{\n \"company\": \"<string>\",\n \"timeout\": 300\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/crunchbase/company")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"company\": \"<string>\",\n \"timeout\": 300\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/crunchbase/company")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"company\": \"<string>\",\n \"timeout\": 300\n}"
response = http.request(request)
puts response.read_body[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"alias": "<string>",
"url": "<string>",
"short_description": "<string>",
"@type": "CrunchbaseCompany",
"logo_url": "<string>",
"legal_name": "<string>",
"website": "<string>",
"founded_on": "<string>",
"operating_status": "<string>",
"company_type": "<string>",
"ipo_status": "<string>",
"employee_count_range": "<string>",
"revenue_range": "<string>",
"categories": [],
"location": {
"@type": "CrunchbaseLocation",
"city": "<string>",
"region": "<string>",
"country": "<string>",
"country_code": "<string>",
"continent": "<string>",
"groups": []
},
"contacts": {
"@type": "CrunchbaseContacts",
"email": "<string>",
"phone": "<string>",
"facebook_url": "<string>",
"linkedin_url": "<string>",
"twitter_url": "<string>",
"num_contacts": 123,
"num_contact_emails": 123,
"num_contact_phones": 123
},
"funding": {
"@type": "CrunchbaseFunding",
"stock_symbol": "<string>",
"total_usd": 123,
"num_rounds": 123,
"last_type": "<string>",
"last_at": "<string>",
"num_investors": 123,
"num_lead_investors": 123,
"num_lead_investments": 123
},
"metrics": {
"@type": "CrunchbaseMetrics",
"cb_rank": 123,
"rank_delta": 123,
"num_investments": 123,
"num_acquisitions": 123,
"num_exits": 123,
"num_current_positions": 123,
"num_sub_organizations": 123,
"num_current_advisor_positions": 123,
"heat_score": 123,
"heat_score_delta": 123,
"growth_score": 123,
"growth_score_delta": 123,
"semrush_global_rank": 123,
"semrush_visits_latest_month": 123,
"semrush_visits_mom_pct": 123,
"semrush_bounce_rate": 123,
"semrush_visit_duration": 123,
"semrush_visit_pageviews": 123,
"builtwith_num_technologies": 123,
"siftery_num_products": 123,
"aberdeen_it_spend_usd": 123
},
"ipo": {
"@type": "CrunchbaseIPO",
"went_public_on": "<string>",
"share_price_usd": 123,
"amount_raised_usd": 123,
"valuation_usd": 123
},
"patents": {
"@type": "CrunchbasePatents",
"num_patents_granted": 123,
"num_trademarks_registered": 123,
"popular_patent_category": "<string>",
"popular_trademark_class": "<string>"
},
"acquired_by": {
"name": "<string>",
"@type": "CrunchbaseAcquiredBy",
"alias": "<string>",
"announced_on": "<string>",
"acquisition_type": "<string>"
},
"related": {
"@type": "CrunchbaseRelated",
"aliases": [],
"founders": [],
"investors": [],
"competitors": []
},
"leadership_hires": [],
"siftery_products": [],
"bombora_surges": [],
"apptopia": {
"@type": "CrunchbaseApptopia",
"total_apps": 123,
"total_downloads": 123,
"apps": []
},
"predictions": {
"@type": "CrunchbasePredictions",
"growth_score": 123,
"growth_tier": "<string>",
"funding_score": 123,
"funding_tier": "<string>",
"acquisition_score": 123,
"acquisition_tier": "<string>",
"ipo_score": 123,
"ipo_tier": "<string>",
"ipo_media_sentiment": "<string>"
},
"technologies": [],
"employees": [],
"investors": [],
"products": [],
"acquisitions": [],
"funding_rounds": [],
"investments": [],
"layoffs": [],
"awards": [],
"offices": [],
"news": []
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Crunchbase
/crunchbase/company
Get Crunchbase Company info
Price: 20 credits
⚠️ Common errors: 412: Company not found. Use /crunchbase/search to find the correct alias.
POST
/
api
/
crunchbase
/
company
/crunchbase/company
curl --request POST \
--url https://api.anysite.io/api/crunchbase/company \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"company": "<string>",
"timeout": 300
}
'import requests
url = "https://api.anysite.io/api/crunchbase/company"
payload = {
"company": "<string>",
"timeout": 300
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({company: '<string>', timeout: 300})
};
fetch('https://api.anysite.io/api/crunchbase/company', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/crunchbase/company",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'company' => '<string>',
'timeout' => 300
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/crunchbase/company"
payload := strings.NewReader("{\n \"company\": \"<string>\",\n \"timeout\": 300\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/crunchbase/company")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"company\": \"<string>\",\n \"timeout\": 300\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/crunchbase/company")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"company\": \"<string>\",\n \"timeout\": 300\n}"
response = http.request(request)
puts response.read_body[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"alias": "<string>",
"url": "<string>",
"short_description": "<string>",
"@type": "CrunchbaseCompany",
"logo_url": "<string>",
"legal_name": "<string>",
"website": "<string>",
"founded_on": "<string>",
"operating_status": "<string>",
"company_type": "<string>",
"ipo_status": "<string>",
"employee_count_range": "<string>",
"revenue_range": "<string>",
"categories": [],
"location": {
"@type": "CrunchbaseLocation",
"city": "<string>",
"region": "<string>",
"country": "<string>",
"country_code": "<string>",
"continent": "<string>",
"groups": []
},
"contacts": {
"@type": "CrunchbaseContacts",
"email": "<string>",
"phone": "<string>",
"facebook_url": "<string>",
"linkedin_url": "<string>",
"twitter_url": "<string>",
"num_contacts": 123,
"num_contact_emails": 123,
"num_contact_phones": 123
},
"funding": {
"@type": "CrunchbaseFunding",
"stock_symbol": "<string>",
"total_usd": 123,
"num_rounds": 123,
"last_type": "<string>",
"last_at": "<string>",
"num_investors": 123,
"num_lead_investors": 123,
"num_lead_investments": 123
},
"metrics": {
"@type": "CrunchbaseMetrics",
"cb_rank": 123,
"rank_delta": 123,
"num_investments": 123,
"num_acquisitions": 123,
"num_exits": 123,
"num_current_positions": 123,
"num_sub_organizations": 123,
"num_current_advisor_positions": 123,
"heat_score": 123,
"heat_score_delta": 123,
"growth_score": 123,
"growth_score_delta": 123,
"semrush_global_rank": 123,
"semrush_visits_latest_month": 123,
"semrush_visits_mom_pct": 123,
"semrush_bounce_rate": 123,
"semrush_visit_duration": 123,
"semrush_visit_pageviews": 123,
"builtwith_num_technologies": 123,
"siftery_num_products": 123,
"aberdeen_it_spend_usd": 123
},
"ipo": {
"@type": "CrunchbaseIPO",
"went_public_on": "<string>",
"share_price_usd": 123,
"amount_raised_usd": 123,
"valuation_usd": 123
},
"patents": {
"@type": "CrunchbasePatents",
"num_patents_granted": 123,
"num_trademarks_registered": 123,
"popular_patent_category": "<string>",
"popular_trademark_class": "<string>"
},
"acquired_by": {
"name": "<string>",
"@type": "CrunchbaseAcquiredBy",
"alias": "<string>",
"announced_on": "<string>",
"acquisition_type": "<string>"
},
"related": {
"@type": "CrunchbaseRelated",
"aliases": [],
"founders": [],
"investors": [],
"competitors": []
},
"leadership_hires": [],
"siftery_products": [],
"bombora_surges": [],
"apptopia": {
"@type": "CrunchbaseApptopia",
"total_apps": 123,
"total_downloads": 123,
"apps": []
},
"predictions": {
"@type": "CrunchbasePredictions",
"growth_score": 123,
"growth_tier": "<string>",
"funding_score": 123,
"funding_tier": "<string>",
"acquisition_score": 123,
"acquisition_tier": "<string>",
"ipo_score": 123,
"ipo_tier": "<string>",
"ipo_media_sentiment": "<string>"
},
"technologies": [],
"employees": [],
"investors": [],
"products": [],
"acquisitions": [],
"funding_rounds": [],
"investments": [],
"layoffs": [],
"awards": [],
"offices": [],
"news": []
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Response
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I