콘텐츠로 이동

코인 목록

엔드포인트: /v1/spot/currencies

요청 매개변수

필요 없음

메서드: GET

예시

Bash
curl -X GET "https://oapi.websea.com/v1/spot/currencies"

응답 매개변수

매개변수 필수 여부 타입 예시 설명
errno int 0 상태 코드
errmsg string success 상태 메시지
result object 예시 참조 코인 목록

결과 필드 설명

매개변수 필수 여부 타입 예시 설명
name string bitcoin 코인 전체 이름
canWithdraw string true 출금 지원 여부
canDeposit string true 입금 지원 여부
minWithdraw string 0.0000001 최소 출금 수량
maxWithdraw string 10000 최대 출금 수량
makerFee string 0.002 메이커(Maker) 수수료율 (범위: 0–1, 예: 0.1 = 10%)
takerFee string 0.002 테이커(Taker) 수수료율 (범위: 0–1, 예: 0.01 = 1%)

응답 예시

JSON
{
    "errno": 0,
    "errmsg": "success",
    "result": {
        "BTC": {
            "name": "bitcoin",
            "canWithdraw": "true",
            "canDeposit": "false",
            "minWithdraw": "0.0000001",
            "maxWithdraw": "10000",
            "makerFee": "0.002",
            "takerFee": "0.002"
        },
        "ETH": {
            "name": "ethereum",
            "canWithdraw": "true",
            "canDeposit": "true",
            "minWithdraw": "0.0000001",
            "maxWithdraw": "10000",
            "makerFee": "0.002",
            "takerFee": "0.002"
        }
    }
}