GET_TRADES
Retrieve recent trades for a specified Upbit market to monitor transaction activity and market trends. Input market code (e.g., KRW-BTC) for precise data.
Instructions
Get recent trades for a 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"
}