/crunchbase/search
curl --request POST \
--url https://api.anysite.io/api/crunchbase/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 123,
"timeout": 300,
"keywords": [],
"location": [],
"postal_code": [],
"industry": [],
"founded_after": "<string>",
"founded_before": "<string>",
"hiring": true,
"event": [],
"spotlight": [],
"last_funding_date_after": "<string>",
"last_funding_date_before": "<string>",
"last_funding_type": [],
"last_funding_amount_min": 1,
"last_funding_amount_max": 1,
"funding_total_min": 1,
"funding_total_max": 1,
"valuation_min": 1,
"valuation_max": 1,
"valuation_date_after": "<string>",
"valuation_date_before": "<string>",
"investors": [],
"shares_investors_with": [],
"it_spend_min": 1,
"it_spend_max": 1
}
'import requests
url = "https://api.anysite.io/api/crunchbase/search"
payload = {
"count": 123,
"timeout": 300,
"keywords": [],
"location": [],
"postal_code": [],
"industry": [],
"founded_after": "<string>",
"founded_before": "<string>",
"hiring": True,
"event": [],
"spotlight": [],
"last_funding_date_after": "<string>",
"last_funding_date_before": "<string>",
"last_funding_type": [],
"last_funding_amount_min": 1,
"last_funding_amount_max": 1,
"funding_total_min": 1,
"funding_total_max": 1,
"valuation_min": 1,
"valuation_max": 1,
"valuation_date_after": "<string>",
"valuation_date_before": "<string>",
"investors": [],
"shares_investors_with": [],
"it_spend_min": 1,
"it_spend_max": 1
}
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: 123,
timeout: 300,
keywords: [],
location: [],
postal_code: [],
industry: [],
founded_after: '<string>',
founded_before: '<string>',
hiring: true,
event: [],
spotlight: [],
last_funding_date_after: '<string>',
last_funding_date_before: '<string>',
last_funding_type: [],
last_funding_amount_min: 1,
last_funding_amount_max: 1,
funding_total_min: 1,
funding_total_max: 1,
valuation_min: 1,
valuation_max: 1,
valuation_date_after: '<string>',
valuation_date_before: '<string>',
investors: [],
shares_investors_with: [],
it_spend_min: 1,
it_spend_max: 1
})
};
fetch('https://api.anysite.io/api/crunchbase/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/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' => 123,
'timeout' => 300,
'keywords' => [
],
'location' => [
],
'postal_code' => [
],
'industry' => [
],
'founded_after' => '<string>',
'founded_before' => '<string>',
'hiring' => true,
'event' => [
],
'spotlight' => [
],
'last_funding_date_after' => '<string>',
'last_funding_date_before' => '<string>',
'last_funding_type' => [
],
'last_funding_amount_min' => 1,
'last_funding_amount_max' => 1,
'funding_total_min' => 1,
'funding_total_max' => 1,
'valuation_min' => 1,
'valuation_max' => 1,
'valuation_date_after' => '<string>',
'valuation_date_before' => '<string>',
'investors' => [
],
'shares_investors_with' => [
],
'it_spend_min' => 1,
'it_spend_max' => 1
]),
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/search"
payload := strings.NewReader("{\n \"count\": 123,\n \"timeout\": 300,\n \"keywords\": [],\n \"location\": [],\n \"postal_code\": [],\n \"industry\": [],\n \"founded_after\": \"<string>\",\n \"founded_before\": \"<string>\",\n \"hiring\": true,\n \"event\": [],\n \"spotlight\": [],\n \"last_funding_date_after\": \"<string>\",\n \"last_funding_date_before\": \"<string>\",\n \"last_funding_type\": [],\n \"last_funding_amount_min\": 1,\n \"last_funding_amount_max\": 1,\n \"funding_total_min\": 1,\n \"funding_total_max\": 1,\n \"valuation_min\": 1,\n \"valuation_max\": 1,\n \"valuation_date_after\": \"<string>\",\n \"valuation_date_before\": \"<string>\",\n \"investors\": [],\n \"shares_investors_with\": [],\n \"it_spend_min\": 1,\n \"it_spend_max\": 1\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/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 123,\n \"timeout\": 300,\n \"keywords\": [],\n \"location\": [],\n \"postal_code\": [],\n \"industry\": [],\n \"founded_after\": \"<string>\",\n \"founded_before\": \"<string>\",\n \"hiring\": true,\n \"event\": [],\n \"spotlight\": [],\n \"last_funding_date_after\": \"<string>\",\n \"last_funding_date_before\": \"<string>\",\n \"last_funding_type\": [],\n \"last_funding_amount_min\": 1,\n \"last_funding_amount_max\": 1,\n \"funding_total_min\": 1,\n \"funding_total_max\": 1,\n \"valuation_min\": 1,\n \"valuation_max\": 1,\n \"valuation_date_after\": \"<string>\",\n \"valuation_date_before\": \"<string>\",\n \"investors\": [],\n \"shares_investors_with\": [],\n \"it_spend_min\": 1,\n \"it_spend_max\": 1\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/crunchbase/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\": 123,\n \"timeout\": 300,\n \"keywords\": [],\n \"location\": [],\n \"postal_code\": [],\n \"industry\": [],\n \"founded_after\": \"<string>\",\n \"founded_before\": \"<string>\",\n \"hiring\": true,\n \"event\": [],\n \"spotlight\": [],\n \"last_funding_date_after\": \"<string>\",\n \"last_funding_date_before\": \"<string>\",\n \"last_funding_type\": [],\n \"last_funding_amount_min\": 1,\n \"last_funding_amount_max\": 1,\n \"funding_total_min\": 1,\n \"funding_total_max\": 1,\n \"valuation_min\": 1,\n \"valuation_max\": 1,\n \"valuation_date_after\": \"<string>\",\n \"valuation_date_before\": \"<string>\",\n \"investors\": [],\n \"shares_investors_with\": [],\n \"it_spend_min\": 1,\n \"it_spend_max\": 1\n}"
response = http.request(request)
puts response.read_body[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"alias": "<string>",
"url": "<string>",
"@type": "CrunchbaseSearchCompany",
"cb_rank": 123,
"logo_url": "<string>",
"short_description": "<string>",
"founded_on": "<string>",
"employee_count_range": "<string>",
"categories": [],
"location": {
"@type": "CrunchbaseLocation",
"city": "<string>",
"region": "<string>",
"country": "<string>",
"country_code": "<string>",
"continent": "<string>",
"groups": []
}
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Crunchbase
/crunchbase/search
Search Crunchbase companies by filters
Price: 20 credits per 50 results
POST
/
api
/
crunchbase
/
search
/crunchbase/search
curl --request POST \
--url https://api.anysite.io/api/crunchbase/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 123,
"timeout": 300,
"keywords": [],
"location": [],
"postal_code": [],
"industry": [],
"founded_after": "<string>",
"founded_before": "<string>",
"hiring": true,
"event": [],
"spotlight": [],
"last_funding_date_after": "<string>",
"last_funding_date_before": "<string>",
"last_funding_type": [],
"last_funding_amount_min": 1,
"last_funding_amount_max": 1,
"funding_total_min": 1,
"funding_total_max": 1,
"valuation_min": 1,
"valuation_max": 1,
"valuation_date_after": "<string>",
"valuation_date_before": "<string>",
"investors": [],
"shares_investors_with": [],
"it_spend_min": 1,
"it_spend_max": 1
}
'import requests
url = "https://api.anysite.io/api/crunchbase/search"
payload = {
"count": 123,
"timeout": 300,
"keywords": [],
"location": [],
"postal_code": [],
"industry": [],
"founded_after": "<string>",
"founded_before": "<string>",
"hiring": True,
"event": [],
"spotlight": [],
"last_funding_date_after": "<string>",
"last_funding_date_before": "<string>",
"last_funding_type": [],
"last_funding_amount_min": 1,
"last_funding_amount_max": 1,
"funding_total_min": 1,
"funding_total_max": 1,
"valuation_min": 1,
"valuation_max": 1,
"valuation_date_after": "<string>",
"valuation_date_before": "<string>",
"investors": [],
"shares_investors_with": [],
"it_spend_min": 1,
"it_spend_max": 1
}
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: 123,
timeout: 300,
keywords: [],
location: [],
postal_code: [],
industry: [],
founded_after: '<string>',
founded_before: '<string>',
hiring: true,
event: [],
spotlight: [],
last_funding_date_after: '<string>',
last_funding_date_before: '<string>',
last_funding_type: [],
last_funding_amount_min: 1,
last_funding_amount_max: 1,
funding_total_min: 1,
funding_total_max: 1,
valuation_min: 1,
valuation_max: 1,
valuation_date_after: '<string>',
valuation_date_before: '<string>',
investors: [],
shares_investors_with: [],
it_spend_min: 1,
it_spend_max: 1
})
};
fetch('https://api.anysite.io/api/crunchbase/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/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' => 123,
'timeout' => 300,
'keywords' => [
],
'location' => [
],
'postal_code' => [
],
'industry' => [
],
'founded_after' => '<string>',
'founded_before' => '<string>',
'hiring' => true,
'event' => [
],
'spotlight' => [
],
'last_funding_date_after' => '<string>',
'last_funding_date_before' => '<string>',
'last_funding_type' => [
],
'last_funding_amount_min' => 1,
'last_funding_amount_max' => 1,
'funding_total_min' => 1,
'funding_total_max' => 1,
'valuation_min' => 1,
'valuation_max' => 1,
'valuation_date_after' => '<string>',
'valuation_date_before' => '<string>',
'investors' => [
],
'shares_investors_with' => [
],
'it_spend_min' => 1,
'it_spend_max' => 1
]),
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/search"
payload := strings.NewReader("{\n \"count\": 123,\n \"timeout\": 300,\n \"keywords\": [],\n \"location\": [],\n \"postal_code\": [],\n \"industry\": [],\n \"founded_after\": \"<string>\",\n \"founded_before\": \"<string>\",\n \"hiring\": true,\n \"event\": [],\n \"spotlight\": [],\n \"last_funding_date_after\": \"<string>\",\n \"last_funding_date_before\": \"<string>\",\n \"last_funding_type\": [],\n \"last_funding_amount_min\": 1,\n \"last_funding_amount_max\": 1,\n \"funding_total_min\": 1,\n \"funding_total_max\": 1,\n \"valuation_min\": 1,\n \"valuation_max\": 1,\n \"valuation_date_after\": \"<string>\",\n \"valuation_date_before\": \"<string>\",\n \"investors\": [],\n \"shares_investors_with\": [],\n \"it_spend_min\": 1,\n \"it_spend_max\": 1\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/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 123,\n \"timeout\": 300,\n \"keywords\": [],\n \"location\": [],\n \"postal_code\": [],\n \"industry\": [],\n \"founded_after\": \"<string>\",\n \"founded_before\": \"<string>\",\n \"hiring\": true,\n \"event\": [],\n \"spotlight\": [],\n \"last_funding_date_after\": \"<string>\",\n \"last_funding_date_before\": \"<string>\",\n \"last_funding_type\": [],\n \"last_funding_amount_min\": 1,\n \"last_funding_amount_max\": 1,\n \"funding_total_min\": 1,\n \"funding_total_max\": 1,\n \"valuation_min\": 1,\n \"valuation_max\": 1,\n \"valuation_date_after\": \"<string>\",\n \"valuation_date_before\": \"<string>\",\n \"investors\": [],\n \"shares_investors_with\": [],\n \"it_spend_min\": 1,\n \"it_spend_max\": 1\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/crunchbase/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\": 123,\n \"timeout\": 300,\n \"keywords\": [],\n \"location\": [],\n \"postal_code\": [],\n \"industry\": [],\n \"founded_after\": \"<string>\",\n \"founded_before\": \"<string>\",\n \"hiring\": true,\n \"event\": [],\n \"spotlight\": [],\n \"last_funding_date_after\": \"<string>\",\n \"last_funding_date_before\": \"<string>\",\n \"last_funding_type\": [],\n \"last_funding_amount_min\": 1,\n \"last_funding_amount_max\": 1,\n \"funding_total_min\": 1,\n \"funding_total_max\": 1,\n \"valuation_min\": 1,\n \"valuation_max\": 1,\n \"valuation_date_after\": \"<string>\",\n \"valuation_date_before\": \"<string>\",\n \"investors\": [],\n \"shares_investors_with\": [],\n \"it_spend_min\": 1,\n \"it_spend_max\": 1\n}"
response = http.request(request)
puts response.read_body[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"alias": "<string>",
"url": "<string>",
"@type": "CrunchbaseSearchCompany",
"cb_rank": 123,
"logo_url": "<string>",
"short_description": "<string>",
"founded_on": "<string>",
"employee_count_range": "<string>",
"categories": [],
"location": {
"@type": "CrunchbaseLocation",
"city": "<string>",
"region": "<string>",
"country": "<string>",
"country_code": "<string>",
"continent": "<string>",
"groups": []
}
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
Required 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 >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Available options:
0, 1000000, 10000000, 50000000, 100000000, 500000000, 1000000000, 10000000000 Available options:
1000000, 10000000, 50000000, 100000000, 500000000, 1000000000, 10000000000, 10000000001 Response
Successful Response
Show child attributes
Show child attributes
⌘I