Seamless.AI · Schema
Seamless.AI Company
A company record in the Seamless.AI platform including firmographics, revenue, technology stack, and funding data.
B2BContact DataSales IntelligenceProspectingLead GenerationCRM Enrichment
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique Seamless.AI company identifier |
| name | string | Company name |
| domain | string | Company website domain |
| description | string | Company description |
| industry | string | Primary industry vertical |
| subIndustry | string | Sub-industry classification |
| employeeCount | integer | Number of employees |
| revenue | number | Annual revenue in USD |
| founded | integer | Year the company was founded |
| headquarters | object | Headquarters location |
| technologies | array | Technology stack |
| linkedinUrl | string | |
| funding | object | Funding information |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/seamless-ai/refs/heads/main/json-schema/seamless-ai-company-schema.json",
"title": "Seamless.AI Company",
"description": "A company record in the Seamless.AI platform including firmographics, revenue, technology stack, and funding data.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique Seamless.AI company identifier"
},
"name": {
"type": "string",
"description": "Company name"
},
"domain": {
"type": "string",
"description": "Company website domain"
},
"description": {
"type": "string",
"description": "Company description"
},
"industry": {
"type": "string",
"description": "Primary industry vertical"
},
"subIndustry": {
"type": "string",
"description": "Sub-industry classification"
},
"employeeCount": {
"type": "integer",
"description": "Number of employees"
},
"revenue": {
"type": "number",
"description": "Annual revenue in USD"
},
"founded": {
"type": "integer",
"description": "Year the company was founded"
},
"headquarters": {
"type": "object",
"description": "Headquarters location",
"properties": {
"city": { "type": "string" },
"state": { "type": "string" },
"country": { "type": "string" }
}
},
"technologies": {
"type": "array",
"description": "Technology stack",
"items": { "type": "string" }
},
"linkedinUrl": {
"type": "string",
"format": "uri"
},
"funding": {
"type": "object",
"description": "Funding information",
"properties": {
"totalAmount": { "type": "number" },
"lastRound": { "type": "string" },
"lastRoundDate": { "type": "string", "format": "date" }
}
}
},
"required": ["id", "name"]
}