get_instruments_info
Retrieve detailed exchange instrument information, including category, symbol, status, and base coin, directly from Bybit API to analyze market data and execute trades efficiently.
Instructions
Get exchange information
Args:
category (str): Category (spot, linear, inverse, etc.)
symbol (str): Symbol (e.g., BTCUSDT)
status (Optional[str]): Status
baseCoin (Optional[str]): Base coin
Returns:
Dict: Exchange information
Example:
get_instruments_info("spot", "BTCUSDT", "Trading", "BTC")
Reference:
https://bybit-exchange.github.io/docs/v5/market/instrumentInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
| baseCoin | No | Base coin | |
| category | Yes | Category (spot, linear, inverse, etc.) | |
| status | No | Status | |
| symbol | Yes | Symbol (e.g., BTCUSDT) |