get_order_book
Retrieve the order book for a specific trading pair on the Luno MCP Server. Input the trading pair (e.g., XBTZAR) to access bid and ask data for informed trading decisions.
Instructions
Get order book 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"
}