get_ticker
Retrieve trading pair ticker information like price, volume, and bid/ask spreads using the Luno Cryptocurrency API, enabling informed trading decisions.
Instructions
Get ticker information for a trading pair
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pair | Yes | Trading pair (e.g., XBTZAR) |
Input Schema (JSON Schema)
{
"properties": {
"pair": {
"description": "Trading pair (e.g., XBTZAR)",
"type": "string"
}
},
"required": [
"pair"
],
"type": "object"
}