Models
Company
Overview of the data model representing a record returned by the Fetch Company endpoint.
JSON Schema
Below is the complete JSON Schema for the data model returned by the Fetch Company endpoint. This schema provides a detailed blueprint of the JSON response, including its structure and data types, ensuring clarity and precision for the company model.
{
"Company": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"company_info": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"canonical_name": {
"type": "string"
},
"founded": {
"type": "string",
"format": "date-time"
},
"industry": {
"type": "string"
},
"website": {
"type": "string"
},
"size": {
"type": "object",
"properties": {
"class": {
"type": "string"
},
"class_sort": {
"type": "integer"
}
}
},
"linkedin_slugs": {
"type": "array",
"items": {
"type": "string"
}
},
"locations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"country": {
"type": "string"
},
"is_primary": {
"type": "boolean"
}
}
}
},
"logo_url": {
"type": "string"
},
"associated_profiles": {
"type": "integer"
},
"type": {
"type": "array",
"items": {
"type": "string"
}
},
"specialities": {
"type": "array",
"items": {
"type": "string"
}
},
"funding": {
"type": "array",
"items": {
"type": "string"
}
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"data_updated_at": {
"type": "string",
"format": "date-time"
}
}
},
"tags": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
}
}
}
},
"team_connection": {
"type": "object",
"properties": {
"team_id": {
"type": "string",
"format": "uuid"
},
"profile_count": {
"type": "integer"
},
"connected_members": {
"type": "array",
"items": {
"type": "object",
"properties": {
"user_id": {
"type": "string",
"format": "uuid"
},
"user_email": {
"type": "string"
},
"user_linkedin_name": {
"type": "string"
}
}
}
},
"connection_members_count": {
"type": "integer"
}
}
}
}
}
}
Company Example
An example of the company record returned by the Company Fetch endpoint is given below.
{
"results": [
{
"id": "09d9c510-c9f6-4c6e-9e62-fe5fedbeda87",
"company_info": {
"id": "09d9c510-c9f6-4c6e-9e62-fe5fedbeda87",
"name": "The Swarm",
"canonical_name": "wearetheswarm",
"summary": "Your Go-To-Network Platform",
"about": "The Swarm is a new kind of Go-To-Network platform. We give companies and investors the keys to their extended networks and the relationship data they need to accelerate sales, recruiting, and fundraising. Get started for free at theswarm.com",
"founded": "2021-01-01T00:00:00Z",
"industry": "Computer Software",
"website": "theswarm.com",
"type": "Privately Held",
"specialities": [
"network",
"network management",
"sales",
"go-to-network"
],
"size": {
"associated_profiles": 13,
"class": "11-50",
"class_sort": 11
},
"linkedin_slugs": [
"wearetheswarm"
],
"locations": [
{
"is_primary": true,
"name": "San Francisco, California, United States",
"address": "548 Market St\n\nPMB 83455\n\nSan Francisco, California 94104, US",
"country": "United States"
},
{
"name": "Kraków",
"country": "Poland"
}
],
"funding": {
"last_round": {
"type": "seed",
"date": "2023-12-01"
},
"crunchbase_slug": "the-swarm-e90d"
},
"logo_url": "https://cdn.theswarm.com/companies/logos/09d/9c5/09d9c510-c9f6-4c6e-9e62-fe5fedbeda87/300x300/3c1a6f9e37c7cc8c567e93a9aa23ac05.jpeg",
"updated_at": "2024-09-19T17:25:45.723966Z",
"created_at": "2023-07-25T16:58:09.358089Z",
"data_updated_at": "2024-09-19T17:25:45.732631Z"
}
}
]
}
On this page