GET_ORDERBOOK
Retrieve an orderbook snapshot for a specified cryptocurrency market on Upbit. Input the market code to access real-time bid and ask data for trading analysis and decision-making.
Instructions
Get orderbook snapshot for a given market
Input Schema
Name | Required | Description | Default |
---|---|---|---|
market | Yes | Upbit market code, e.g., KRW-BTC |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"market": {
"description": "Upbit market code, e.g., KRW-BTC",
"minLength": 3,
"type": "string"
}
},
"required": [
"market"
],
"type": "object"
}