get_instrument_info
Retrieve detailed information for a specific trading pair on Bybit, including symbol and instrument category, to facilitate informed trading decisions.
Instructions
Get detailed instrument information for a specific trading pair
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Category of the instrument (spot, linear, inverse) | |
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"
},
"symbol": {
"description": "Trading pair symbol (e.g., 'BTCUSDT')",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}