API Documentation
Integrate Sector HQ data into your applications
Get API KeyAuthentication
Authenticate by including your API key as a Bearer token in the Authorization header. API keys follow the format sk_live_*.
Public endpoints can be called without authentication, but rate limits are lower for unauthenticated requests.
curl -H "Authorization: Bearer sk_live_YOUR_KEY" \
https://sectorhq-api-fa5v2.ondigitalocean.app/api/v1/leaderboard/companiesEndpoint Reference
Leaderboard
/api/v1/leaderboard/companiesPaginated company list with ranks/api/v1/leaderboard/companies/{slug}Company detail/api/v1/leaderboard/hype-indexAI Hype Index/api/v1/leaderboard/moversBiggest rank moversLLM Pricing
/api/v1/llm/modelsAll LLM models with pricing/api/v1/llm/providersProvider aggregate stats/api/v1/llm/compareCross-provider comparison/api/v1/llm/cheapestCheapest per category/api/v1/llm/history/{slug}Price history/api/v1/llm/estimateCost calculator/api/v1/llm/price-frontierPrice-performance frontierData Marketplace
/api/v1/data/catalogDataset catalog/api/v1/data/preview/{id}Preview rows/api/v1/data-feed/latestLatest feed/api/v1/data-feed/historicalHistorical feedsTrading
/api/v1/trading/public-performancePublic track record/api/v1/trading/performanceFull trading dataBilling
/api/v1/billing/signupCreate account/api/v1/billing/usageUsage stats/api/v1/billing/upgradeStripe checkoutReports
/api/v1/reports/company/{slug}Generate report/api/v1/reports/{job_id}/statusCheck progressRate Limits
| Tier | Daily Limit | Rate / Minute |
|---|---|---|
| Free | 100 | 10 |
| Professional | 1,000 | 60 |
| Enterprise | Unlimited | None |
Embeddable Widgets
Drop live Sector HQ data into any webpage with a single line of HTML.
Company Rank Badge
Display a company's current rank on the Sector HQ rankings. Replace {slug} with the company slug (e.g., openai).
<iframe
src="https://sectorhq-api-fa5v2.ondigitalocean.app/embed/company/{slug}"
width="300"
height="200"
frameborder="0"
></iframe>Hype Gauge Widget
Show the current AI Hype Index level in a compact gauge format.
<iframe
src="https://sectorhq-api-fa5v2.ondigitalocean.app/embed/hype-gauge"
width="200"
height="120"
frameborder="0"
></iframe>ChatGPT Plugin
Sector HQ data is available as a ChatGPT plugin, allowing conversational queries against the leaderboard, LLM pricing, and hype index data.
Plugin manifest: /.well-known/ai-plugin.json
Response Format
All responses are returned as application/json.
Success Response
{
"data": [ ... ],
"meta": {
"total": 500,
"page": 1,
"per_page": 20
}
}Error Response
{
"detail": "Invalid API key"
}HTTP Status Codes
Ready to get started?
Sign up for a free API key and start integrating Sector HQ data into your applications today.
View Pricing Plans