GET
/
metrics
/
total-withdrawals
curl --request GET \
  --url https://api.eigenexplorer.com/metrics/total-withdrawals \
  --header 'X-API-Token: <x-api-token>'
{
  "total": {
    "value": 1000000,
    "change24h": {
      "value": 10,
      "percent": 0.01
    },
    "change7d": {
      "value": 10,
      "percent": 0.01
    }
  },
  "pending": {
    "value": 1000000,
    "change24h": {
      "value": 10,
      "percent": 0.01
    },
    "change7d": {
      "value": 10,
      "percent": 0.01
    }
  },
  "completed": {
    "value": 1000000,
    "change24h": {
      "value": 10,
      "percent": 0.01
    },
    "change7d": {
      "value": 10,
      "percent": 0.01
    }
  }
}

Headers

X-API-Token
string
required

API Token for authentication

Query Parameters

withChange
enum<string>
default:false

Toggle whether the route should return 24h/7d change for count of withdrawals

Available options:
true,
false
Example:

"false"

Response

200
application/json
The total number of withdrawals.
total
object
required
pending
object
required
completed
object
required