get_ticker
Retrieve real-time ticker data for cryptocurrency trading pairs on Bybit. Supports optional reference ID for data verification and includes categories like spot, linear, and inverse.
Instructions
Get real-time ticker information for a trading pair. Supports optional reference ID for data verification.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Category of the instrument (spot, linear, inverse) | |
includeReferenceId | No | Include reference ID and metadata for data verification (default: false) | |
symbol | Yes | Trading pair symbol (e.g., 'BTCUSDT') |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"annotations": {
"priority": 0
},
"description": "Category of the instrument (spot, linear, inverse)",
"enum": [
"spot",
"linear",
"inverse"
],
"type": "string"
},
"includeReferenceId": {
"annotations": {
"priority": 0
},
"description": "Include reference ID and metadata for data verification (default: false)",
"type": "boolean"
},
"symbol": {
"annotations": {
"priority": 1
},
"description": "Trading pair symbol (e.g., 'BTCUSDT')",
"pattern": "^[A-Z0-9]+$",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}