POST /api/crunchbase/company
Price: 20 credits
Get Crunchbase Company info
Get Crunchbase company profile by alias or URL. Returns funding, employees, metrics, and acquisitions.
Call these first: /crunchbase/search
access-token string requiredtimeout integer — Max scrapping execution timeout (in seconds) (default: 300; min: 20; max: 1500)company string required — Company alias or full Crunchbase URL. Alias is case-sensitive and must match the source exactly (e.g. 'Google' and 'google' are different). (examples: "google", "https://www.crunchbase.com/organization/google")@type string (default: "CrunchbaseCompany")id string required (format: uuid)name string requiredalias string requiredurl string requiredlogo_url string nullableshort_description string requireddescription string requiredlegal_name string nullablewebsite string nullablefounded_on string nullableoperating_status string nullablecompany_type string nullableipo_status string nullableemployee_count_range string nullablerevenue_range string nullablecategories array (default: [])location object nullable@type string (default: "CrunchbaseLocation")city string nullableregion string nullablecountry string nullablecountry_code string nullablecontinent string nullablegroups array (default: [])contacts object nullable@type string (default: "CrunchbaseContacts")email string nullablephone string nullablefacebook_url string nullablelinkedin_url string nullabletwitter_url string nullablenum_contacts integer nullablenum_contact_emails integer nullablenum_contact_phones integer nullablefunding object nullable@type string (default: "CrunchbaseFunding")stock_symbol string nullabletotal_usd integer nullablenum_rounds integer nullablelast_type string nullablelast_at string nullablenum_investors integer nullablenum_lead_investors integer nullablenum_lead_investments integer nullablemetrics object nullable@type string (default: "CrunchbaseMetrics")cb_rank integer nullablerank_delta number nullablenum_investments integer nullablenum_acquisitions integer nullablenum_exits integer nullablenum_current_positions integer nullablenum_sub_organizations integer nullablenum_current_advisor_positions integer nullableheat_score integer nullableheat_score_delta integer nullablegrowth_score integer nullablegrowth_score_delta integer nullablesemrush_global_rank integer nullablesemrush_visits_latest_month integer nullablesemrush_visits_mom_pct number nullablesemrush_bounce_rate number nullablesemrush_visit_duration integer nullablesemrush_visit_pageviews number nullablebuiltwith_num_technologies integer nullablesiftery_num_products integer nullableaberdeen_it_spend_usd integer nullableipo object nullable@type string (default: "CrunchbaseIPO")went_public_on string nullableshare_price_usd integer nullableamount_raised_usd integer nullablevaluation_usd integer nullablepatents object nullable@type string (default: "CrunchbasePatents")num_patents_granted integer nullablenum_trademarks_registered integer nullablepopular_patent_category string nullablepopular_trademark_class string nullableacquired_by object nullable@type string (default: "CrunchbaseAcquiredBy")name string requiredalias string nullableannounced_on string nullableacquisition_type string nullablerelated object nullable@type string (default: "CrunchbaseRelated")aliases array (default: [])founders array (default: [])investors array (default: [])competitors array (default: [])leadership_hires array (default: [])@type string (default: "CrunchbaseLeadershipHire")date string nullabledescription string nullablepress_title string nullablepress_url string nullablepress_publisher string nullablesiftery_products array (default: [])@type string (default: "CrunchbaseSifteryProduct")name string requiredstatus string nullablenum_customers integer nullablebombora_surges array (default: [])@type string (default: "CrunchbaseBomboraSurge")topic string requiredcategory string nullablesurge_score integer nullablesurge_wow_growth number nullableweeks_surging integer nullableapptopia object nullable@type string (default: "CrunchbaseApptopia")total_apps integer nullabletotal_downloads integer nullableapps array (default: [])@type string (default: "CrunchbaseApptopiaApp")name string requiredstores array (default: [])monthly_downloads integer nullablepredictions object nullable@type string (default: "CrunchbasePredictions")growth_score number nullablegrowth_tier string nullablefunding_score number nullablefunding_tier string nullableacquisition_score number nullableacquisition_tier string nullableipo_score number nullableipo_tier string nullableipo_media_sentiment string nullabletechnologies array (default: [])@type string (default: "CrunchbaseTechnology")name string requiredcategories array (default: [])num_companies_using integer nullableemployees array (default: [])@type string (default: "CrunchbaseEmployee")name string requiredalias string nullablestarted_on string nullableinvestors array (default: [])@type string (default: "CrunchbaseInvestor")name string requiredalias string nullabletype string nullableround string nullableproducts array (default: [])@type string (default: "CrunchbaseProduct")name string requireddescription string nullableacquisitions array (default: [])@type string (default: "CrunchbaseAcquisition")name string requiredannounced_on string nullablefunding_rounds array (default: [])@type string (default: "CrunchbaseFundingRound")name string requiredannounced_on string nullableinvestment_type string nullablemoney_raised_usd integer nullablenum_investors integer nullablelead_investors array (default: [])investments array (default: [])@type string (default: "CrunchbaseInvestment")company string requiredround_name string nullableannounced_on string nullableis_lead boolean (default: false)money_raised_usd integer nullablelayoffs array (default: [])@type string (default: "CrunchbaseLayoff")date string nullabledescription string nullableawards array (default: [])@type string (default: "CrunchbaseAward")name string requireddate string nullabledescription string nullableoffices array (default: [])@type string (default: "CrunchbaseOffice")name string nullableopening_date string nullabledescription string nullablenews array (default: [])@type string (default: "CrunchbaseNews")url string nullablepublisher string nullabledate string nullable422 — The request body did not validate Check the fields against this schema. A URN with the wrong prefix is the most common cause.408 — The request ran past its time limit Raise `timeout` in the request body, up to the maximum this endpoint documents. Lowering `count` or turning off the `with_*` flags also helps, because less work finishes sooner.412 — Company not found. Use /crunchbase/search to find the correct alias. Retrying will not help: either the entity does not exist, or the input points at a different one.429 — Too many requests: a rate limit or a usage window is exhausted When the response carries an X-Retry-After header, wait that many seconds and retry: the same number is in the body as `detail.retry_after`, and the limit clears once that window passes. The message in the body names the limit that was hit.500 — Something broke on our side Retrying will not help. If it keeps happening, send us the X-Request-ID from the response headers.529 — Rate limit reached, or the endpoint is overloaded Wait at least 30 seconds, then retry.X-Error — Error message text (present only on error)X-Request-ID — Unique request identifierX-Execution-Time — Execution time in secondsX-Result-Count — How many records the body carries. 0 means an empty result, which is a normal answer and not by itself an error. A non-zero count can come back together with X-Error when the failure happened partway through — read this header and X-Error independently.X-Total-Available-Results — How many records exist for this query, when the endpoint can say. On a `dry_run` request this is the answer and the body is empty. It saturates: the endpoint's documented maximum means 'at least that many', any smaller number is exact.X-Warning — Present when the request body carried keys this endpoint does not document. They were ignored, so any filter you meant to apply through them did not apply. Check the spelling against this schema and retry.X-Retry-After — Seconds to wait before retrying. Present only on 429.