Companies API
The Companies endpoint lets you list, filter, and retrieve detailed company profiles from the Claradb graph.
List companies
Terminal
GET /api/v1/companies
Query parameters
| Parameter | Type | Description |
|---|---|---|
q | string | Free-text search query |
sort | string | Sort field: momentum, name, funding, created |
order | string | Sort order: asc or desc (default: desc) |
sector | string | Filter by sector slug |
stage | string | Filter by funding stage |
limit | number | Results per page (default: 20, max: 100) |
offset | number | Pagination offset |
Example
Terminal
curl "https://claradb.com/api/v1/companies?sector=llm&sort=momentum&limit=10" \
-H "Authorization: Bearer YOUR_API_KEY"
Response
JSON
{
"data": [
{
"id": "comp_abc123",
"name": "Example AI",
"slug": "example-ai",
"sector": "llm",
"stage": "series-b",
"momentum_score": 87.4,
"signals": {
"github": 92,
"research": 78,
"hiring": 65,
"funding": 95
},
"updated_at": "2025-03-24T00:00:00Z"
}
],
"pagination": {
"total": 342,
"limit": 10,
"offset": 0
}
}
Get company detail
Terminal
GET /api/v1/companies/:id
Returns the full company profile including description, team size, location, funding history, and signal timeline.