get_trades
Retrieve recent trades for a specified trading pair and category (spot, linear, inverse) with a customizable limit up to 1000, using the Bybit MCP Server for real-time cryptocurrency data access.
Instructions
Get recent trades for a trading pair
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Category of the instrument (spot, linear, inverse) | |
limit | No | Limit for the number of trades (max 1000) | |
symbol | Yes | Trading pair symbol (e.g., 'BTCUSDT') |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Category of the instrument (spot, linear, inverse)",
"enum": [
"spot",
"linear",
"inverse"
],
"type": "string"
},
"limit": {
"description": "Limit for the number of trades (max 1000)",
"enum": [
"1",
"10",
"50",
"100",
"200",
"500",
"1000"
],
"type": "string"
},
"symbol": {
"description": "Trading pair symbol (e.g., 'BTCUSDT')",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}