Crunchbase · Schema
CrunchbaseOrganization
Schema for a Crunchbase organization (company, investor, or school) entity.
Business DataFundingInvestmentsStartupsPrivate MarketsFirmographics
Properties
| Name | Type | Description |
|---|---|---|
| uuid | string | |
| permalink | string | |
| name | string | |
| short_description | string | |
| description | string | |
| website_url | string | |
| string | ||
| string | ||
| founded_on | string | |
| closed_on | string | |
| operating_status | string | |
| num_employees_enum | string | |
| ipo_status | string | |
| category_groups | array | |
| categories | array | |
| location_identifiers | array | |
| funding_total | object | |
| last_funding_at | string | |
| last_funding_type | string | |
| num_funding_rounds | integer | |
| num_investors | integer | |
| num_acquisitions | integer | |
| num_investments | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/crunchbase/refs/heads/main/json-schema/crunchbase-organization-schema.json",
"title": "CrunchbaseOrganization",
"description": "Schema for a Crunchbase organization (company, investor, or school) entity.",
"type": "object",
"required": ["uuid", "name"],
"properties": {
"uuid": {"type": "string", "format": "uuid"},
"permalink": {"type": "string"},
"name": {"type": "string"},
"short_description": {"type": "string"},
"description": {"type": "string"},
"website_url": {"type": "string", "format": "uri"},
"linkedin": {"type": "string", "format": "uri"},
"twitter": {"type": "string", "format": "uri"},
"founded_on": {"type": "string", "format": "date"},
"closed_on": {"type": "string", "format": "date"},
"operating_status": {"type": "string", "enum": ["active", "closed"]},
"num_employees_enum": {"type": "string"},
"ipo_status": {"type": "string", "enum": ["private", "public", "delisted", "was_acquired"]},
"category_groups": {
"type": "array",
"items": {"type": "string"}
},
"categories": {
"type": "array",
"items": {"type": "string"}
},
"location_identifiers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"uuid": {"type": "string", "format": "uuid"},
"value": {"type": "string"},
"permalink": {"type": "string"}
}
}
},
"funding_total": {
"type": "object",
"properties": {
"value": {"type": "number"},
"currency": {"type": "string"},
"value_usd": {"type": "number"}
}
},
"last_funding_at": {"type": "string", "format": "date"},
"last_funding_type": {"type": "string"},
"num_funding_rounds": {"type": "integer"},
"num_investors": {"type": "integer"},
"num_acquisitions": {"type": "integer"},
"num_investments": {"type": "integer"}
}
}