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
| Endpoint | Method | Description |
|---|---|---|
/companies | GET | List and filter companies |
/companies/:id | GET | Get a single company with full detail |
/search | GET | Full-text search across companies |
/companies/:id/signals | GET | Get signal history for a company |
Rate limits
| Plan | Requests/min | Requests/day |
|---|---|---|
| Free | 30 | 1,000 |
| Pro | 120 | 10,000 |
| Team | 300 | 50,000 |
Rate limit headers are included in every response:
Code
X-RateLimit-Limit: 120
X-RateLimit-Remaining: 119
X-RateLimit-Reset: 1711234567
Next steps
- Companies API — Query and filter the company graph.
- Search API — Full-text search with faceted results.
- Authentication — API key management and scopes.