API Overview

The Claradb API gives you programmatic access to the same company data and momentum signals available in the web interface.

Base URL

Code
https://claradb.com/api/v1

Authentication

All API requests require a Bearer token. Create an API key from your workspace settings.

Terminal
curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://claradb.com/api/v1/companies

See Authentication for details on key management and scopes.

Available endpoints

EndpointMethodDescription
/companiesGETList and filter companies
/companies/:idGETGet a single company with full detail
/searchGETFull-text search across companies
/companies/:id/signalsGETGet signal history for a company

Rate limits

PlanRequests/minRequests/day
Free301,000
Pro12010,000
Team30050,000

Rate limit headers are included in every response:

Code
X-RateLimit-Limit: 120
X-RateLimit-Remaining: 119
X-RateLimit-Reset: 1711234567

Next steps

API Overview — Claradb Docs | Claradb