Restaking
Restaking endpoints provide insights into Eigenlayer and various Restaking protocol data.
This endpoint returns the latest analytical data for protocol
.
Path parameters
protocolstringRequiredExample:
The name of the restaking protocol in lowercase
puffer
Responses
200
OK
application/json
404
There is no data for the provided `protocol`
505
Internal Server Error
get
GET /data/restaking/{protocol} HTTP/1.1
Host:
Accept: */*
{
"data": [
{
"name": "puffer",
"total_restaked_eth": 374297.33010939584,
"total_restaked_usd": 1323062459.4973912,
"registered_node_operators": 3,
"staker_rewards": 0.9,
"protocol_fees": 0.05,
"node_operator_fees": 0.05,
"timestamp": 1705298411
}
]
}
This endpoint returns the latest analytical data for all restaking protocols from the past 7 days.
Responses
200
OK
application/json
404
There is no Data
505
Internal Server Error
get
GET /data/restaking HTTP/1.1
Host:
Accept: */*
{
"data": [
{
"name": "puffer",
"total_restaked_eth": 374297.33010939584,
"total_restaked_usd": 1323062459.4973912,
"registered_node_operators": 3,
"staker_rewards": 0.9,
"protocol_fees": 0.05,
"node_operator_fees": 0.05,
"timestamp": 1705298411
},
{
"name": "swell",
"total_restaked_eth": 374147.33210639586,
"total_restaked_usd": 1483062459.4973912,
"registered_node_operators": 1,
"staker_rewards": 1,
"protocol_fees": 0,
"node_operator_fees": 0,
"timestamp": 1705298411
}
]
}
This endpoint returns the analytical data for Eigenlayer from the past 7 days.
Responses
200
OK
application/json
404
There is no Data.
505
Internal Server Error
get
GET /data/eigenlayer HTTP/1.1
Host:
Accept: */*
{
"data": [
{
"name": "eigenlayer",
"total_restaked_eth": 1695284.393995845,
"total_restaked_usd": 6754980286.600794,
"total_staked_eth": 41167382.376960635,
"total_staked_usd": 164034339838.3266,
"strategy_count": 12,
"deployed_pods": 24903,
"timestamp": 1705298411
}
]
}
Last updated