API Reference
Integrate Coin Screener's powerful features into your applications
Authentication
All API endpoints require authentication using an API key
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.coinscreener.co/v1/market/pricesGet Market Data
Retrieve real-time market data for cryptocurrencies
GET
GET /v1/market/prices
# Response
{
"data": [
{
"symbol": "BTC",
"price": 95000.00,
"change24h": 2.5
}
]
}