ticker: Get product ticker

API: coinbase.com:coinbase-pro-api
Endpoint: /products/{product_id}/ticker
Response format: application/json
Auth: none
Method: GET
Last Status: 200
Latency: 146ms

Description

Returns the current best bid/ask prices and latest trade information. Use this for real-time price quotes and last-trade displays with minimal latency.

From spec: Get the latest trading information for a product including price, volume, and bid/ask.

Usage Tips

- 'bid' is the highest price buyers will pay - 'ask' is the lowest price sellers will accept - 'price' is the price of the most recent trade - 'size' is the amount traded in the last transaction

Parameters (1)

product_id (string, path, required)

Product ID (e.g., BTC-USD)

Examples (1)

Get BTC-USD real-time ticker probe-gate

Demonstrates fetching real-time price quote data including best bid, ask, last trade price, and volume for quick market monitoring.

curl 'https://api.exchange.coinbase.com/products/BTC-USD/ticker'
import requests

resp = requests.get("https://api.exchange.coinbase.com/products/BTC-USD/ticker")
data = resp.json()
import zingu_apis

api = zingu_apis.api("coinbase-pro")
result = api.fetch("products/{product_id}/ticker")

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

Probe History

Latency

Status Codes

TimeStatusLatencySize
2026-04-16 02:25:30.457394 200 146ms
2026-04-15 04:13:07.603875 200 159ms
2026-04-14 02:19:08.686225 200 143ms
2026-04-12 16:56:15.463356 200 155ms
2026-04-10 01:51:42.405598 200 207ms
2026-04-09 03:06:30.465327 200 154ms
2026-04-08 01:38:36.465913 200 854ms
2026-04-07 00:37:50.232095 200 148ms
2026-04-06 00:10:53.043893 200 197ms