반응형
API Reference
HTTP Method | API URL |
GET | https://api.upbit.com/v1/orders |
QUERY PARAMS
필드명 | 필수 여부 | 설명 | 타입 |
market | N | Market ID | String |
state | N | 주문 상태 | String |
uuids | N | 주문 UUID의 목록 | Array of Strings |
identifiers | N | 주문 identifier의 목록 | Array of Strings |
page | N | Integer | |
order_by | N | 정렬 | String |
HEADERS
헤더명 | 필수 여부 | 설명 | 타입 |
Authorization | Y | Authorization token (JWT) | String |
Request Parameters
필드명 | 설명 | 타입 |
market | 마켓 아이디 | String |
uuids | 주문 UUID의 목록 | Array<String> |
identifiers | 주문 identifier의 목록 | Array<String> |
state |
주문 상태 ■ wait : 체결 대기 (default) ■ done : 전체 체결 완료 ■ cancel : 주문 취소 |
String |
page | 페이지 수, default: 1 | Number |
order_by |
정렬 방식 ■ asc : 오름차순 ■ desc : 내림차순 (default) |
String |
Response
필드명 | 설명 | 타입 |
uuid | 주문의 고유 아이디 | String |
side | 주문 종류 | String |
ord_type | 주문 방식 | String |
price | 주문 당시 화폐 가격 | NumberString |
state | 주문 상태 | String |
market | 마켓의 유일키 | String |
created_at | 주문 생성 시간 | String |
volume | 사용자가 입력한 주문 양 | NumberString |
remaining_volume | 체결 후 남은 주문 양 | NumberString |
reserved_fee | 수수료로 예약된 비용 | NumberString |
remaining_fee | 남은 수수료 | NumberString |
paid_fee | 사용된 수수료 | NumberString |
locked | 거래에 사용중인 비용 | NumberString |
executed_volume | 체결된 양 | NumberString |
trades_count | 해당 주문에 걸린 체결 수 | Integer |
VBA Code
Sub Upbit_Orders()
Const ACCESS_KEY As String = "UPBIT_OPEN_API_ACCESS_KEY"
Const SECRET_KEY As String = "UPBIT_OPEN_API_SECRET_KEY"
Dim WinHttp As New WinHttp.WinHttpRequest
Dim url As String, nonce As String, queryStr As String
Dim header As String, payload As String, signature As String, jwt As String
'Dim market As String, state As String, uuids As String, identifiers As String, page As String, orderBy As String
url = "https://api.upbit.com/v1/orders"
'market = ""
'state = ""
'uuids = ""
'identifiers = ""
'page = ""
'order_by = ""
'queryStr = "market=" & market & "&state=" & state & "&uuids=" & uuids & _
"&identfiers=" & identfiers & "&page=" & page & "&order_by=" & orderBy
nonce = DateDiff("s", "1/1/1970", Now) & Right(Timer() * 100, 3)
header = Base64Encode(StrConv("{""alg"":""HS256"",""typ"":""JWT""}", vbFromUnicode))
payload = "{""access_key"":""" & ACCESS_KEY & """,""nonce"":""" & nonce & """,""query"":""" & queryStr & """}"
payload = Base64Encode(StrConv(payload, vbFromUnicode))
signature = Base64Encode(SHA256Encrypt(header & "." & payload, SECRET_KEY))
jwt = header & "." & payload & "." & signature
With WinHttp
.Open "GET", url & "?" & queryStr
.SetRequestHeader "Authorization", "Bearer " & jwt
.Send
.WaitForResponse
Debug.Print .ResponseText
End With
Set WinHttp = Nothing
End Sub
SHA-256 Encrypt
더보기
Function SHA256Encrypt(text As String, Optional secretKey As String = vbNullString) As Byte()
Dim asc As Object, enc As Object
Dim bText() As Byte, bKey() As Byte, bytes() As Byte
Set asc = CreateObject("System.Text.UTF8Encoding")
If secretKey <> vbNullString Then
Set enc = CreateObject("System.Security.Cryptography.HMACSHA256")
bText = asc.Getbytes_4(text)
bKey = asc.Getbytes_4(secretKey)
enc.Key = bKey
bytes = enc.ComputeHash_2(bText)
Else
Set enc = CreateObject("System.Security.Cryptography.SHA256Managed")
bText = asc.Getbytes_4(text)
bytes = enc.ComputeHash_2((bText))
End If
SHA256Encrypt = bytes
Set asc = Nothing
Set enc = Nothing
End Function
Base64 Encode
더보기
Function Base64Encode(ByRef arrData() As Byte) As String
Dim objXML As MSXML2.DOMDocument
Dim objNode As MSXML2.IXMLDOMElement
Set objXML = New MSXML2.DOMDocument
Set objNode = objXML.createElement("b64")
objNode.DataType = "bin.base64"
objNode.nodeTypedValue = arrData
Base64Encode = Replace(objNode.text, Chr(10), vbNullString)
Set objNode = Nothing
Set objXML = Nothing
End Function
업비트 OPEN API
Upbit Open API v1.0.6
반응형
'VBA > Code' 카테고리의 다른 글
[VBA] 업비트 Open API>주문>주문하기 (1) | 2019.10.04 |
---|---|
[VBA] 업비트 Open API>주문>주문 취소 접수 (0) | 2019.10.04 |
[VBA] 업비트 Open API>주문>개별 주문 조회 (0) | 2019.10.04 |
[VBA] 업비트 Open API>주문>주문 가능 정보 (0) | 2019.09.30 |
[VBA] 업비트 Open API>자산>전체 계좌 조회 (1) | 2019.09.30 |