get_order
Retrieve detailed information about a specific order on Upbit using either the order UUID or a custom identifier. Ideal for tracking and managing cryptocurrency transactions effectively.
Instructions
업비트에서 특정 주문의 정보를 조회합니다.
Args:
uuid (str, optional): 주문 UUID
identifier (str, optional): 조회용 사용자 지정 값
Returns:
dict: 주문 정보
Input Schema
Name | Required | Description | Default |
---|---|---|---|
identifier | No | ||
uuid | No |
Input Schema (JSON Schema)
{
"properties": {
"identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Identifier"
},
"uuid": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Uuid"
}
},
"title": "get_orderArguments",
"type": "object"
}