/crunchbase/db/search
curl --request POST \
--url https://api.anysite.io/api/crunchbase/db/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 99,
"timeout": 300,
"keywords": [],
"location": [],
"industry": [],
"founded_after": 123,
"founded_before": 123,
"last_funding_date_after": 123,
"last_funding_date_before": 123,
"last_funding_type": [],
"funding_total_min": 1,
"funding_total_max": 1,
"investors": []
}
'import requests
url = "https://api.anysite.io/api/crunchbase/db/search"
payload = {
"count": 99,
"timeout": 300,
"keywords": [],
"location": [],
"industry": [],
"founded_after": 123,
"founded_before": 123,
"last_funding_date_after": 123,
"last_funding_date_before": 123,
"last_funding_type": [],
"funding_total_min": 1,
"funding_total_max": 1,
"investors": []
}
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({
count: 99,
timeout: 300,
keywords: [],
location: [],
industry: [],
founded_after: 123,
founded_before: 123,
last_funding_date_after: 123,
last_funding_date_before: 123,
last_funding_type: [],
funding_total_min: 1,
funding_total_max: 1,
investors: []
})
};
fetch('https://api.anysite.io/api/crunchbase/db/search', 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/db/search",
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([
'count' => 99,
'timeout' => 300,
'keywords' => [
],
'location' => [
],
'industry' => [
],
'founded_after' => 123,
'founded_before' => 123,
'last_funding_date_after' => 123,
'last_funding_date_before' => 123,
'last_funding_type' => [
],
'funding_total_min' => 1,
'funding_total_max' => 1,
'investors' => [
]
]),
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/db/search"
payload := strings.NewReader("{\n \"count\": 99,\n \"timeout\": 300,\n \"keywords\": [],\n \"location\": [],\n \"industry\": [],\n \"founded_after\": 123,\n \"founded_before\": 123,\n \"last_funding_date_after\": 123,\n \"last_funding_date_before\": 123,\n \"last_funding_type\": [],\n \"funding_total_min\": 1,\n \"funding_total_max\": 1,\n \"investors\": []\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/db/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 99,\n \"timeout\": 300,\n \"keywords\": [],\n \"location\": [],\n \"industry\": [],\n \"founded_after\": 123,\n \"founded_before\": 123,\n \"last_funding_date_after\": 123,\n \"last_funding_date_before\": 123,\n \"last_funding_type\": [],\n \"funding_total_min\": 1,\n \"funding_total_max\": 1,\n \"investors\": []\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/crunchbase/db/search")
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 \"count\": 99,\n \"timeout\": 300,\n \"keywords\": [],\n \"location\": [],\n \"industry\": [],\n \"founded_after\": 123,\n \"founded_before\": 123,\n \"last_funding_date_after\": 123,\n \"last_funding_date_before\": 123,\n \"last_funding_type\": [],\n \"funding_total_min\": 1,\n \"funding_total_max\": 1,\n \"investors\": []\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/db/search
Search Crunchbase companies in dataset (fast)
Price: 1 credit per 1 results
POST
/
api
/
crunchbase
/
db
/
search
/crunchbase/db/search
curl --request POST \
--url https://api.anysite.io/api/crunchbase/db/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 99,
"timeout": 300,
"keywords": [],
"location": [],
"industry": [],
"founded_after": 123,
"founded_before": 123,
"last_funding_date_after": 123,
"last_funding_date_before": 123,
"last_funding_type": [],
"funding_total_min": 1,
"funding_total_max": 1,
"investors": []
}
'import requests
url = "https://api.anysite.io/api/crunchbase/db/search"
payload = {
"count": 99,
"timeout": 300,
"keywords": [],
"location": [],
"industry": [],
"founded_after": 123,
"founded_before": 123,
"last_funding_date_after": 123,
"last_funding_date_before": 123,
"last_funding_type": [],
"funding_total_min": 1,
"funding_total_max": 1,
"investors": []
}
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({
count: 99,
timeout: 300,
keywords: [],
location: [],
industry: [],
founded_after: 123,
founded_before: 123,
last_funding_date_after: 123,
last_funding_date_before: 123,
last_funding_type: [],
funding_total_min: 1,
funding_total_max: 1,
investors: []
})
};
fetch('https://api.anysite.io/api/crunchbase/db/search', 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/db/search",
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([
'count' => 99,
'timeout' => 300,
'keywords' => [
],
'location' => [
],
'industry' => [
],
'founded_after' => 123,
'founded_before' => 123,
'last_funding_date_after' => 123,
'last_funding_date_before' => 123,
'last_funding_type' => [
],
'funding_total_min' => 1,
'funding_total_max' => 1,
'investors' => [
]
]),
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/db/search"
payload := strings.NewReader("{\n \"count\": 99,\n \"timeout\": 300,\n \"keywords\": [],\n \"location\": [],\n \"industry\": [],\n \"founded_after\": 123,\n \"founded_before\": 123,\n \"last_funding_date_after\": 123,\n \"last_funding_date_before\": 123,\n \"last_funding_type\": [],\n \"funding_total_min\": 1,\n \"funding_total_max\": 1,\n \"investors\": []\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/db/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 99,\n \"timeout\": 300,\n \"keywords\": [],\n \"location\": [],\n \"industry\": [],\n \"founded_after\": 123,\n \"founded_before\": 123,\n \"last_funding_date_after\": 123,\n \"last_funding_date_before\": 123,\n \"last_funding_type\": [],\n \"funding_total_min\": 1,\n \"funding_total_max\": 1,\n \"investors\": []\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/crunchbase/db/search")
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 \"count\": 99,\n \"timeout\": 300,\n \"keywords\": [],\n \"location\": [],\n \"industry\": [],\n \"founded_after\": 123,\n \"founded_before\": 123,\n \"last_funding_date_after\": 123,\n \"last_funding_date_before\": 123,\n \"last_funding_type\": [],\n \"funding_total_min\": 1,\n \"funding_total_max\": 1,\n \"investors\": []\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
Body
application/json
Required range:
x <= 100Required range:
20 <= x <= 1500Available options:
1, 11, 51, 101, 251, 501, 1001, 5001, 10001 Available options:
10, 50, 100, 250, 500, 1000, 5000, 10000, 10001 Available options:
pre_seed, seed, series_a, series_b, series_c, series_d, series_e, series_f, series_g, series_h, series_i, series_j, angel, convertible_note, corporate_round, debt_financing, equity_crowdfunding, grant, initial_coin_offering, non_equity_assistance, post_ipo_debt, post_ipo_equity, post_ipo_secondary, private_equity, product_crowdfunding, secondary_market, undisclosed Required range:
x >= 0Required range:
x >= 0Response
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