Developer API
BiotechTube API
Programmatic access to biotech market data. Build dashboards, power analytics, and integrate biotech intelligence into your workflow.
Fast
< 100ms avg response
Reliable
99.9% uptime SLA
RESTful
JSON responses
Secure
API key auth
Base URL
https://api.biotechtube.com/v1
Authentication
Include your API key in the request header:
Authorization: Bearer YOUR_API_KEY
Endpoints
GET
/api/v1/companiesList companies with optional search and filtering.
Parameters
qstringSearch query (name, ticker)sectorstringFilter by sector slugcountrystringFilter by countrylimitintegerResults per page (default: 20, max: 100)offsetintegerPagination offsetResponse
{
"data": [
{
"id": "uuid",
"name": "Moderna Inc",
"slug": "moderna",
"ticker": "MRNA",
"country": "United States",
"sector": "mRNA Therapeutics",
"market_cap": 45200000000,
"pipeline_count": 47
}
],
"total": 14253,
"limit": 20,
"offset": 0
}Code Examples
curl -X GET "https://api.biotechtube.com/v1/companies?q=moderna&limit=5" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"
API Pricing
Scale your usage as you grow
Free
Free
100 requests/day
- Company search & basic profiles
- Basic pipeline data
- 100 requests per day
- JSON responses
- Community support
Most popular
Pro
$99/mo
10,000 requests/day
- Everything in Free
- Full pipeline data with scores
- Product hype scores & trends
- Funding round data
- Market snapshot data
- 10,000 requests per day
- Email support
Enterprise
$499/mo
Unlimited
- Everything in Pro
- Unlimited requests
- Bulk data export (CSV/JSON)
- Webhook notifications
- Custom data feeds
- Dedicated support
- SLA guarantee
Rate Limiting
Rate limits are enforced per API key. When you exceed your limit, the API returns a 429 Too Many Requests status. The response includes X-RateLimit-Remaining and X-RateLimit-Reset headers.