Skip to main content
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": "FinTech",
  "location": "San Francisco",
  "postal_code": "10001",
  "industry": "Saas",
  "employee_count_min": 11,
  "employee_count_max": 500,
  "founded_after": "01/01/2020",
  "founded_before": "12/31/2023",
  "hiring": true,
  "event": "CES",
  "spotlight": "Black Led"
}
'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "alias": "<string>",
    "url": "<string>",
    "@type": "@crunchbase_search_company",
    "cb_rank": 123,
    "logo_url": "<string>",
    "short_description": "<string>",
    "description": "<string>",
    "founded_on": "<string>",
    "employee_count_range": "<string>",
    "categories": [],
    "location": {
      "@type": "@crunchbase_location",
      "city": "<string>",
      "region": "<string>",
      "country": "<string>",
      "country_code": "<string>",
      "continent": "<string>",
      "groups": []
    }
  }
]

Authorizations

access-token
string
header
required

Headers

access-token
string
required

Body

application/json
count
integer
required

Max result count

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keywords

Description keywords. Example: 'FinTech' or ['RegTech', 'FinTech']

Example:

"FinTech"

location

HQ locations. Example: 'Boston' or ['San Francisco', 'Boston']

Example:

"San Francisco"

postal_code

HQ postal codes. Example: '94105' or ['94105', '10001']

Example:

"10001"

industry

Industries. Example: 'SaaS' or ['SaaS', 'Cloud Computing']

Example:

"Saas"

employee_count_min
enum<integer> | null

Min employee count. Allowed: 1, 11, 51, 101, 251, 501, 1001, 5001, 10001

Available options:
1,
11,
51,
101,
251,
501,
1001,
5001,
10001
Example:

11

employee_count_max
enum<integer> | null

Max employee count. Allowed: 10, 50, 100, 250, 500, 1000, 5000, 10000, 10001

Available options:
10,
50,
100,
250,
500,
1000,
5000,
10000,
10001
Example:

500

founded_after
string | null

Founded after date. Format: MM/DD/YYYY. Example: '01/01/2020'

Example:

"01/01/2020"

founded_before
string | null

Founded before date. Format: MM/DD/YYYY. Example: '12/31/2023'

Example:

"12/31/2023"

hiring
boolean | null

Only actively hiring companies

Example:

true

event

Participated in events. Example: 'Dreamforce' or ['Dreamforce', 'CES']

Example:

"CES"

spotlight

Diversity spotlight labels. Example: 'Black Led' or ['Black Led', 'Latine Founded']

Example:

"Black Led"

Response

Successful Response

id
string<uuid>
required
name
string
required
alias
string
required
url
string
required
@type
string
default:@crunchbase_search_company
cb_rank
integer | null
logo_url
string | null
short_description
string | null
description
string | null
founded_on
string | null
employee_count_range
string | null
categories
string[]
location
CrunchbaseLocation · object