개요
- 암호화폐 거래소 게이트아이오( gate.io ) 의 현물 종목들 ( 예 : BTC, ETH, XRP ,... ) rest api 로 종목 정보 확보. 동일 요청주소로 마진 종목들도 같이 제공됨.
- 게이트아이오 현물 종목은 결제통화에 따라 USDT, BTC, ETH 마켓이 있고, 모두 동일 주소로 요청하여 심볼 정보 확보 가능. 요청 응답 데이터 항목 중 quote 에 기록된 문자열을 보고 어떤 마켓인지 식별 가능하다.
종목 정보 요청 주소.
https://api.gateio.ws/api/v4/spot/currency_pairs
요청 코드예 .
파이썬
# coding: utf-8
import requests
host = "https://api.gateio.ws"
prefix = "/api/v4"
headers = {'Accept': 'application/json', 'Content-Type': 'application/json'}
url = '/spot/currency_pairs'
query_param = ''
r = requests.request('GET', host + prefix + url, headers=headers)
print(r.json())
응답 데이터 형식
주의 . 데이터 항목 "min_base_amout" 은 종목별로 제공 안되는 것도 있다.
[
{
"id": "ETH_USDT",
"base": "ETH",
"quote": "USDT",
"fee": "0.2",
"min_base_amount": "0.001",
"min_quote_amount": "1.0",
"amount_precision": 3,
"precision": 6,
"trade_status": "tradable",
"sell_start": 1516378650,
"buy_start": 1516378650
}
]
응답 데이터 항목
Name | Type | Description |
id | string | Currency pair |
base | string | Base currency |
quote | string | Quote currency |
fee | string | Trading fee |
min_base_amount | string | Minimum amount of base currency to trade, null means no limit 주의 . 데이터 항목 "min_base_amout" 은 종목별로 제공 안되는 것도 있다. |
min_quote_amount | string | Minimum amount of quote currency to trade, null means no limit |
amount_precision | integer | Amount scale |
precision | integer | Price scale |
trade_status | string | How currency pair can be traded - untradable: cannot be bought or sold - buyable: can be bought - sellable: can be sold - tradable: can be bought or sold |
sell_start | integer(int64) | Sell start unix timestamp in seconds |
buy_start | integer(int64) | Buy start unix timestamp in seconds |
연관
상위정리
첫 등록 : 2022.03.29
최종 수정 :
단축 주소 : https://igotit.tistory.com/3572
'트레이딩 > 암호화폐' 카테고리의 다른 글
암호화폐. Bybit. API 활용 모음 (0) | 2022.04.03 |
---|---|
암호화폐 . 게이트아이오. API . 무기한 선물. 종목 정보 확보 (0) | 2022.03.31 |
암호화폐 . 게이트아이오. API . 개요 . 주소 정리. 예제소스 (0) | 2022.03.31 |
암호화폐 . MEXC . API . 선물 . 웹소켓. 실시간 캔들 K-line (0) | 2022.03.15 |
암호화폐 . MEXC . API . 선물 . 캔들 확보 (0) | 2022.03.14 |
댓글