overview

기본 정보

/wdollar/overview API를 통해 WEMIX$의 홀더 수, 거래량, DIOS 리워드 수량 등 다양한 정보를 얻을 수 있습니다.

WEMIX$ overview

GET /wdollar/overview

WEMIX$와 관련된 다양한 정보를 반환합니다.

{
  "type": "success",
  "message": "success",
  "data": {
    "24h": {
      "total_supply_change": 0
    },
    "w$_tx_number": "string",
    "w$_user_number": "string",
    "w$_total_volume": 0,
    "w$_dios_acc_reward": 0,
    "updated_at": "string"
  }
}

Request

Parameter

NameTypeDescription

-

-

-

Response

Parameter

NameTypeDescription

type

string

성공/실패 여부

message

string

성공/실패 메시지

data

-

-

total_supply_change

number

24시간동안 WEMIX$의 Total Supply 변화량

w$_tx_number

string

총 WEMIX$ 트랜잭션 개수

w$_user_number

string

총 WEMIX$ 홀더수

w$_total_volume

number

총 WEMIX$ 거래량

w$_dios_acc_reward

number

DIOS Staking 리워드로 지급된 WEMIX$ 개수

updated_at

string

API response 업데이트 시각

Sample

Request

curl

curl -X 'GET' \
  'https://openapi.wemix.fi/wdollar/overview' \
  -H 'accept: application/json'

Request URL

https://openapi.wemix.fi/wdollar/overview

Response

{
  "type": "success",
  "message": "success",
  "data": {
    "24h": {
      "total_supply_change": 0
    },
    "w$_tx_number": "258978",
    "w$_user_number": "34252",
    "w$_total_volume": 127799279.61719546,
    "w$_dios_acc_reward": 39597.105701274486,
    "updated_at": "2023-04-25T05:57:13.000Z"
  }
}