Skip to main content
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
}
'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "alias": "<string>",
    "url": "<string>",
    "short_description": "<string>",
    "description": "<string>",
    "@type": "@crunchbase_company",
    "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": "@crunchbase_location",
      "city": "<string>",
      "region": "<string>",
      "country": "<string>",
      "country_code": "<string>",
      "continent": "<string>",
      "groups": []
    },
    "contacts": {
      "@type": "@crunchbase_contacts",
      "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": "@crunchbase_funding",
      "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": "@crunchbase_metrics",
      "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": "@crunchbase_ipo",
      "went_public_on": "<string>",
      "share_price_usd": 123,
      "amount_raised_usd": 123,
      "valuation_usd": 123
    },
    "patents": {
      "@type": "@crunchbase_patents",
      "num_patents_granted": 123,
      "num_trademarks_registered": 123,
      "popular_patent_category": "<string>",
      "popular_trademark_class": "<string>"
    },
    "related": {
      "@type": "@crunchbase_related",
      "aliases": [],
      "founders": [],
      "investors": [],
      "competitors": []
    },
    "products": [],
    "acquisitions": [],
    "funding_rounds": [],
    "investments": [],
    "layoffs": [],
    "awards": [],
    "offices": []
  }
]

Authorizations

access-token
string
header
required

Headers

access-token
string
required

Body

application/json
company
string
required

Company alias or full Crunchbase URL

Examples:

"google"

"https://www.crunchbase.com/organization/google"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string<uuid>
required
name
string
required
alias
string
required
url
string
required
short_description
string
required
description
string
required
@type
string
default:@crunchbase_company
logo_url
string | null
website
string | null
founded_on
string | null
operating_status
string | null
company_type
string | null
ipo_status
string | null
employee_count_range
string | null
revenue_range
string | null
categories
string[]
location
CrunchbaseLocation · object
contacts
CrunchbaseContacts · object
funding
CrunchbaseFunding · object
metrics
CrunchbaseMetrics · object
ipo
CrunchbaseIPO · object
patents
CrunchbasePatents · object
products
CrunchbaseProduct · object[]
acquisitions
CrunchbaseAcquisition · object[]
funding_rounds
CrunchbaseFundingRound · object[]
investments
CrunchbaseInvestment · object[]
layoffs
CrunchbaseLayoff · object[]
awards
CrunchbaseAward · object[]
offices
CrunchbaseOffice · object[]