get_ticker
Retrieve the latest ticker data including last trade price, best bid, best ask, and 24h rolling volume for any Luno trading pair. Use for a quick price snapshot without authentication.
Instructions
Get the latest ticker (last trade price, best bid, best ask, 24h rolling volume) for a single Luno trading pair. Public endpoint, no auth required. Use this for a quick price snapshot of one market; use get_tickers for multiple markets at once, or get_order_book for depth-of-book.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pair | Yes | Trading pair using Luno's symbol convention (e.g. XBTZAR for BTC/ZAR, ETHZAR, XBTEUR). BTC is automatically rewritten to XBT. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ask | Yes | ||
| bid | Yes | ||
| last_trade | Yes | ||
| pair | Yes | ||
| rolling_24_hour_volume | Yes | ||
| status | Yes | ||
| timestamp | Yes |