Transaction HistoryPublic API
빗썸 거래소 암호화폐 거래 체결 완료 내역을 제공합니다.
GET https://api.bithumb.com/public/transaction_history/{order_currency}_{payment_currency}
{order_currency} = 주문 통화(코인), 기본값 : BTC
{payment_currency} = 결제 통화(마켓), 기본값 : KRW
Example Response
{ "status" : "0000", "data" : [ { "transaction_date" : "2018-04-10 17:47:46", "type" : "bid", "units_traded" : "1.0", "price" : "6779000", "total" : "6779000" }, { "transaction_date" : "2018-04-10 17:43:38", "type" : "bid", "units_traded" : "0.1", "price" : "6779000", "total" : "677900" }, { "transaction_date" : "2018-04-10 14:13:25", "type" : "ask", "units_traded" : "0.0001", "price" : "7575000", "total" : "758" } ] }
Request Parameters
요청 변수 | 설명 | 타입 |
---|---|---|
count | 1~100 (기본값 : 20) |
Integer |
Response
필드 | 설명 | 타입 |
---|---|---|
status | 결과 상태 코드 (정상: 0000, 그 외 에러 코드 참조) | String |
transaction_date | 거래 체결 시간 타임 스탬프 (YYYY-MM-DD HH:MM:SS) |
Integer (String) |
type | 거래 유형 bid : 매수 ask : 매도 |
String |
units_traded | Currency 거래량 | Number (String) |
price | Currency 거래가 | Number (String) |
total | 총 거래 금액 | Number (String) |