Restaking

Restaking endpoints provide insights into Eigenlayer and various Restaking protocol data.

Retrieves analytical data for the specified protocol from the past 7 days.

get

This endpoint returns the latest analytical data for protocol.

Path parameters
protocolstringRequired

The name of the restaking protocol in lowercase

Example: puffer
Responses
200
OK
application/json
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
    }
  ]
}

Retrieves analytical data for all supported restaking protocols from the past 7 days.

get

This endpoint returns the latest analytical data for all restaking protocols from the past 7 days.

Responses
200
OK
application/json
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
    }
  ]
}

Retrieves analytical data for Eigenlayer from the past 7 days.

get

This endpoint returns the analytical data for Eigenlayer from the past 7 days.

Responses
200
OK
application/json
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