Ecosystem Metrics
Retrieve total number of withdrawals
Quick Start
API Endpoints
- System Status
- Ecosystem Metrics
- GETRetrieve summary metrics
- GETRetrieve total TVL
- GETRetrieve Beacon Chain restaking TVL
- GETRetrieve restaking strategies TVL
- GETRetrieve a strategy TVL by address
- GETRetrieve total number of AVS
- GETRetrieve total number of AVS operators
- GETRetrieve total number of AVS stakers
- GETRetrieve total number of withdrawals
- GETRetrieve total number of deposits
- GETRetrieve deployment ratio
- GETRetrieve restaking ratio
- GET
- Historical Metrics
- AVS
- Operators
- Stakers
- Withdrawals
- Deposits
- Rewards
- Events
- Operator-Sets
Ecosystem Metrics
Retrieve total number of withdrawals
Returns the total number of withdrawals.
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
API Token for authentication
Query Parameters
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.
The total number of withdrawals
Example:
1000000
The pending number of withdrawals
Example:
1000000
The completed number of withdrawals
Example:
1000000
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
}
}
}