list count

Overview

The /tx/list/count API provides the number of transactions that have occurred on WEMIX.Fi in the past 7 days.

Transaction count

GET /tx/list/count

Returns the number of transactions that have occurred in the past 7 days.

{
  "type": "success",
  "message": "success",
  "data": "string"
}

Request

Parameter

NameTypeDescription

-

-

-

Response

Parameter

NameTypeDescription

type

string

success/failure status

message

string

success/failure message

data

string

Number of transactions over the 7 days

Sample

Request

curl

curl -X 'GET' \
  'https://openapi.wemix.fi/tx/list/count' \
  -H 'accept: application/json'

Request URL

https://openapi.wemix.fi/tx/list/count

Response

{
  "type": "success",
  "message": "success",
  "data": "8070"
}