요청주소
GET /spot/trades
full url : https://api.gateio.ws/api/v4/spot/trades
BTC_USDT 최신 체결데이터 요청 예.
- 인자 limit 지정하지 않으면 최신 30개 반환됨. limit 에 지정가능한 최대 수량 1000
https://api.gateio.ws/api/v4/spot/trades?currency_pair=BTC_USDT
BTC_USDT 요청 최신체결데이터 1개 요청 예.
https://api.gateio.ws/api/v4/spot/trades?currency_pair=BTC_USDT&limit=1
요청인자
Name | In | Type | Required | Description |
currency_pair | query | string | true | Currency pair |
limit | query | integer | false | Maximum number of records to be returned in a single list |
last_id | query | string | false | Specify list staring point using the id of last record in previous list-query results |
reverse | query | boolean | false | Whether the id of records to be retrieved should be less than the last_id specified. Default to false. |
from | query | integer (int64) |
false | Start timestamp of the query |
to | query | integer (int64) |
false | Time range ending, default to current time |
page | query | integer | false | Page number |
응답데이터
[
{
"id": "1232893232",
"create_time": "1548000000",
"create_time_ms": "1548000000123.456",// 실제 수신데이터는 소수점이하 6자리 1548000000123.456000 마지막 3개는 항상 0
"order_id": "4128442423",
"side": "buy",
"role": "maker",
"amount": "0.15",
"price": "0.03",
"fee": "0.0005",
"fee_currency": "ETH",
"point_fee": "0",
"gt_fee": "0"
}
]
상위 정리
첫 등록 : 2022.08.07
최종 수정 : 2022.08.17
단축 주소 : https://igotit.tistory.com/3736
댓글