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",
  "last_funding_date_after": "01/01/2023",
  "last_funding_date_before": "12/31/2024",
  "last_funding_type": "series_a",
  "last_funding_amount_min": 1000000,
  "last_funding_amount_max": 50000000,
  "funding_total_min": 5000000,
  "funding_total_max": 200000000,
  "valuation_min": 10000000,
  "valuation_max": 1000000000,
  "valuation_date_after": "01/01/2023",
  "valuation_date_before": "12/31/2025",
  "investors": "Sequoia Capital",
  "shares_investors_with": "Stripe",
  "it_spend_min": 500000,
  "it_spend_max": 700000,
  "revenue_min": 10000000,
  "revenue_max": 500000000
}
'
[
  {
    "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

API token from the dashboard

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"

last_funding_date_after
string | null

Last funding date after. Format: MM/DD/YYYY. Example: '01/01/2023'

Example:

"01/01/2023"

last_funding_date_before
string | null

Last funding date before. Format: MM/DD/YYYY. Example: '12/31/2024'

Example:

"12/31/2024"

last_funding_type

Last funding round type(s)

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
Example:

"series_a"

last_funding_amount_min
integer | null

Min last funding amount in USD. Example: 1000000

Required range: x >= 0
Example:

1000000

last_funding_amount_max
integer | null

Max last funding amount in USD. Example: 50000000

Required range: x >= 0
Example:

50000000

funding_total_min
integer | null

Min total funding raised in USD. Example: 5000000

Required range: x >= 0
Example:

5000000

funding_total_max
integer | null

Max total funding raised in USD. Example: 200000000

Required range: x >= 0
Example:

200000000

valuation_min
integer | null

Min valuation in USD. Example: 10000000

Required range: x >= 0
Example:

10000000

valuation_max
integer | null

Max valuation in USD. Example: 1000000000

Required range: x >= 0
Example:

1000000000

valuation_date_after
string | null

Valuation date after. Format: MM/DD/YYYY. Example: '01/01/2023'

Example:

"01/01/2023"

valuation_date_before
string | null

Valuation date before. Format: MM/DD/YYYY. Example: '12/31/2025'

Example:

"12/31/2025"

investors

Investor names. Example: 'Sequoia Capital' or ['Sequoia Capital', 'Andreessen Horowitz']

Example:

"Sequoia Capital"

shares_investors_with

Companies that share investors with. Example: 'Stripe' or ['Stripe', 'Airbnb']

Example:

"Stripe"

it_spend_min
integer | null

Min IT spend in USD. Example: 500000

Required range: x >= 0
Example:

500000

it_spend_max
integer | null

Max IT spend in USD. Example: 700000

Required range: x >= 0
Example:

700000

revenue_min
enum<integer> | null

Min annual revenue in USD. Allowed: 0, 1000000, 10000000, 50000000, 100000000, 500000000, 1000000000, 10000000000

Available options:
0,
1000000,
10000000,
50000000,
100000000,
500000000,
1000000000,
10000000000
Example:

10000000

revenue_max
enum<integer> | null

Max annual revenue in USD. Allowed: 1000000, 10000000, 50000000, 100000000, 500000000, 1000000000, 10000000000, 10000000001 (unbounded)

Available options:
1000000,
10000000,
50000000,
100000000,
500000000,
1000000000,
10000000000,
10000000001
Example:

500000000

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