Coin

코인 관련 정보를 제공하는 서비스입니다.

시세 현재가(Ticker)조회 서비스
마켓에 대한 현재 시세정보를 리턴합니다.(업비트)
End Point Method Parameter
/v1/coin/inquiry/upbit/ticker GET Query

Request Parameters
필드 설명 타입
market 종목 구분 코드 String

Response
필드 설명 타입
market 종목 구분 코드 String
trade_date 최근 거래 일자(UTC) String
trade_time 최근 거래 시각(UTC) String
trade_date_kst 최근 거래 일자(KST) String
trade_time_kst 최근 거래 시각(KST) String
tax_type_cd 대표자명 String
trade_timestamp 최근 거래 일시(UTC) Long
opening_price 시가 Double
high_price 고가 Double
low_price 저가 Double
trade_price 종가(현재가) Double
prev_closing_price 전일 종가(UTC 0시 기준) Double
change EVEN : 보합
RISE : 상승
FALL : 하락
String
change_price 변화액의 절대값 Double
change_rate 변화율의 절대값 Double
signed_change_price 부호가 있는 변화액 Double
signed_change_rate 부호가 있는 변화율 Double
trade_volume 가장 최근 거래량 Double
acc_trade_price 누적 거래대금(UTC 0시 기준) Double
acc_trade_price_24h 24시간 누적 거래대금 Double
acc_trade_volume 누적 거래량(UTC 0시 기준) Double
acc_trade_volume_24h 24시간 누적 거래량 Double
highest_52_week_price 52주 신고가 Double
highest_52_week_date 52주 신고가 달성일 String
lowest_52_week_price 52주 신저가 Double
lowest_52_week_date 52주 신저가 달성일 String
htimestamp 타임스탬프 Long

Response Sample

{
  "code": "0000,
  "message": "정상처리",
  "body": {
    "market": "KRW-BTC",
    "trade_date": "20230512",
    "trade_time": "132906",
    "trade_date_kst": "20230512",
    "trade_time_kst": "222906",
    "trade_timestamp": 1683898146101,
    "opening_price": 36413000,
    "high_price": 36554000,
    "low_price": 35330000,
    "trade_price": 35804000,
    "prev_closing_price": 36411000,
    "change": "FALL",
    "change_price": 607000,
    "change_rate": 0.0166707863,
    "signed_change_price": -607000,
    "signed_change_rate": -0.0166707863,
    "trade_volume": 0.0608,
    "acc_trade_price": 137482178205.7489,
    "acc_trade_price_24h": 197907705994.5349,
    "acc_trade_volume": 3836.4371771,
    "acc_trade_volume_24h": 5487.78196715,
    "highest_52_week_price": 41000000,
    "highest_52_week_date": "2022-05-15",
    "lowest_52_week_price": 20700000,
    "lowest_52_week_date": "2022-12-30",
    "timestamp": 1683898146125
  }
}
                    
시세 종목조회 서비스
마켓에서 거래가능한 종목정보를 리턴합니다.(업비트)
End Point Method Parameter
/v1/coin/inquiry/upbit/market GET Query

Response
필드 설명 타입
market 종목코드 String
korean_name 종목한글명 String
english_name 종목영문 String

Response Sample

{
  "code": "0000",
  "message": "정상처리",
  "body" : {
    "total_count": 298,
    "list": [
        {
            "market": "KRW-BTC",
            "korean_name": "비트코인",
            "english_name": "Bitcoin"
        },
        {
            "market": "KRW-ETH",
            "korean_name": "이더리움",
            "english_name": "Ethereum"
        },
        {
            "market": "BTC-ETH",
            "korean_name": "이더리움",
            "english_name": "Ethereum"
        },
        {
            "market": "BTC-XRP",
            "korean_name": "리플",
            "english_name": "Ripple"
        },
        #...
      ]
    }
}