{symbol}: Get ticker price for a symbol

API: blockchain.com:blockchain.com-api
Endpoint: /tickers/{symbol}
Response format: application/json
Auth: unknown
Method: GET
Last Status: 200
Latency: 182ms

Description

Provides current market data including latest price, 24h change, volume, and trading ranges. Use this to display current market conditions and calculate price changes. The standard endpoint for price tickers.

From spec: Returns 24-hour price and volume data for a specific trading symbol.

Usage Tips

- Returns real-time data updated on each trade - price_24h shows the price 24 hours ago for calculating change percent - volume_24h is in the base currency (e.g., BTC for BTC-USD)

Parameters (1)

symbol (?, path, required)

Trading symbol (e.g., BTC-USD, ETH-USD)

Examples (1)

Get current BTC-USD ticker price doc_extracted

Demonstrates fetching current 24-hour price and volume data for Bitcoin to US Dollar trading pair.

curl 'https://api.blockchain.com/v3/exchange/tickers/BTC-USD'
import requests

resp = requests.get("https://api.blockchain.com/v3/exchange/tickers/BTC-USD")
data = resp.json()
import zingu_apis

api = zingu_apis.api("blockchain.com")
result = api.fetch("tickers/{symbol}")

for item in result:
    print(item)
const resp = await fetch("https://api.blockchain.com/v3/exchange/tickers/BTC-USD");
const data = await resp.json();

Probe History

Latency

Status Codes

TimeStatusLatencySize
2026-04-16 02:15:30.311700 200 182ms
2026-04-15 02:25:38.959102 200 219ms
2026-04-14 03:10:58.582757 200 213ms
2026-04-12 16:54:09.725378 200 180ms
2026-04-10 02:45:44.860507 200 122ms
2026-04-09 01:02:21.320072 200 217ms