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

ParameterTypeDescription
qstringFree-text search query
sortstringSort field: momentum, name, funding, created
orderstringSort order: asc or desc (default: desc)
sectorstringFilter by sector slug
stagestringFilter by funding stage
limitnumberResults per page (default: 20, max: 100)
offsetnumberPagination 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.

Companies API — Claradb Docs | Claradb