GET_ORDER
Retrieve details of a specific order on the Upbit cryptocurrency exchange using the private API. Requires order UUID or identifier to fetch accurate order information.
Instructions
Get a single Upbit order (requires private API)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
identifier | No | ||
uuid | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"identifier": {
"type": "string"
},
"uuid": {
"type": "string"
}
},
"type": "object"
}