list_trades
Retrieve recent trades for a specific currency pair using the Luno MCP Server. Specify the trading pair and optionally filter by timestamp to access executed trade details.
Instructions
List recent trades for a currency pair
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pair | Yes | Trading pair (e.g., XBTZAR) | |
since | No | Fetch trades executed after this timestamp (Unix milliseconds) |
Input Schema (JSON Schema)
{
"properties": {
"pair": {
"description": "Trading pair (e.g., XBTZAR)",
"type": "string"
},
"since": {
"description": "Fetch trades executed after this timestamp (Unix milliseconds)",
"type": "string"
}
},
"required": [
"pair"
],
"type": "object"
}