overview

Overview

The /wdollar/overview API provides various information such as the number of WEMIX$ holders, trading volume, and DIOS rewards.

WEMIX$ overview

GET /wdollar/overview

Returns information on 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

success/failure status

message

string

success/failure message

data

-

-

total_supply_change

number

Total supply change of WEMIX$ over 7 days

w$_tx_number

string

Total number of WEMIX$ transactions

w$_user_number

string

Total number of WEMIX$ holders

w$_total_volume

number

Total trading volume of WEMIX$

w$_dios_acc_reward

number

Accumulated number of WEMIX$ given as DIOS Staking rewards

updated_at

string

API response update time

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"
  }
}