get_positions
Retrieve detailed position information for specific trading categories and symbols on Bybit, facilitating accurate market analysis and trading decisions.
Instructions
Get position information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | Yes | Category (spot, linear, inverse, etc.) | |
| symbol | No | Symbol (e.g., BTCUSDT) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Category (spot, linear, inverse, etc.)",
"type": "string"
},
"symbol": {
"description": "Symbol (e.g., BTCUSDT)",
"type": "string"
}
},
"required": [
"category"
],
"type": "object"
}