콘텐츠로 이동

선물 거래쌍 정보 조회

엔드포인트: /v1/futures/info

요청 매개변수

없음

메서드

GET

예시

Bash
curl -X GET "https://oapi.websea.com/v1/futures/info?symbol=BTC-USDT"

쿼리 매개변수

매개변수 필수 여부 타입 예시 설명
symbol 아니요 String BTC-USDT 거래쌍

응답 매개변수

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

result 필드 설명

필드 필수 여부 타입 예시 설명
symbol String BTC-USDT 거래쌍 이름
contract_type String future 계약 유형. future는 무기한 계약을 나타냅니다.
contract_price String 1 계약 액면가 (한 계약이 나타내는 기초 자산의 양)
contract_price_currency String USDT 상대 자산

응답 예시

JSON
{
  "errno": 0,
  "errmsg": "success",
  "result": [
    {
      "symbol": "EOS-USDT",
      "contract_type": "future",
      "contract_price": "0.01",
      "contract_price_currency": "USDT"
    },
    {
      "symbol": "BTC-USDT",
      "contract_type": "future",
      "contract_price": "0.001",
      "contract_price_currency": "USDT"
    }
  ]
}