Cryptocurrency Data API
Power your applications with real-time and historical cryptocurrency data, news aggregation, and market analytics.
Simple, reliable, and developer-friendly REST API.
View Pricing API DocumentationWhy Choose Our API?
Real-time Data
Get millisecond updates for prices, trades, and order books across 100+ exchanges.
Historical Data
Access clean, normalized historical data for backtesting and analysis since 2010.
News & Sentiment
Aggregated crypto news and sentiment analysis from thousands of sources.
99.9% Uptime
Enterprise-grade reliability with SLA guarantees and 24/7 monitoring.
API Pricing Tiers
Choose the plan that fits your needs. All plans include documentation and support.
Developer
Perfect for testing and small projects
- 100 requests/day
- Real-time prices (5 min delay)
- Top 20 cryptocurrencies
- Basic market data
- News API
- Historical data
- WebSocket streams
Professional
For startups and growing applications
- 10,000 requests/day
- Real-time prices (no delay)
- 500+ cryptocurrencies
- Full market data
- News API (100 req/day)
- 1 year historical data
- Basic WebSocket
Enterprise
For institutions and high-volume applications
- Unlimited requests
- Real-time + WebSocket
- All cryptocurrencies
- Full market depth
- News & Sentiment API
- Full historical data
- Dedicated support
Quick Start & Examples
Authentication
All API requests require an API key passed in the header:
Authorization: Bearer your_api_key_here
Available Endpoints
Get current price for a cryptocurrency. Example: /api/v1/prices/BTC
Get historical OHLCV data with optional interval.
Get latest cryptocurrency news with filters.
Get global market statistics and capitalization.
Example Request (JavaScript)
const fetchCryptoPrice = async (symbol) => {
const response = await fetch(
`https://api.ajnastraders.com/api/v1/prices/${symbol}`, {
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
}
});
const data = await response.json();
return data;
};
// Usage
fetchCryptoPrice('BTC').then(price => console.log(price));
Full API Documentation
Check out our complete API documentation with interactive examples, code snippets, and detailed parameter descriptions.
View Full DocumentationReady to Get Started?
Join thousands of developers and businesses using our API to power their cryptocurrency applications.