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/instrument
Input 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) |
Input Schema (JSON Schema)
{
"properties": {
"baseCoin": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Base coin",
"title": "Basecoin"
},
"category": {
"description": "Category (spot, linear, inverse, etc.)",
"title": "Category",
"type": "string"
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Status",
"title": "Status"
},
"symbol": {
"description": "Symbol (e.g., BTCUSDT)",
"title": "Symbol",
"type": "string"
}
},
"required": [
"category",
"symbol"
],
"title": "get_instruments_infoArguments",
"type": "object"
}