LogoLogo
  • Welcome to Alterscope
  • INTRODUCTION
    • What is DefAI?
    • What are AI Agents?
    • What is Alteron?
  • How to get started
    • Sign Up
    • Agent Framework
    • Agent Signals
      • APY Changes
      • Arbitrage Opportunities
      • Centralised Exchange Movements
      • Cyvers Security Alerts
      • DAO Proposals
      • Ecosystem In/Out-Flows
      • ERC20 Price Movements
      • Function Calls
      • Gas Fee Spikes
      • Protocol Health Alerts
      • Simple Moving Averages
      • Stablecoin Price Deviations
      • Token Transfers
      • Wallet Health Factors
      • Whale Activity
    • Agent Network
  • Data Feeds
    • API Endpoint
    • Authentication
    • API Reference
      • Development
      • Development Score
      • Security
      • Liquidity
        • Lending Protocols
        • Decentralized Exchange Protocols
        • Stablecoin Protocols
        • Derivative Protocols
        • Liquid Staking Protocols
      • Community
      • Governance
      • Governance Score
      • Blockchain
      • Oracles
      • Overall Score
      • Tokenomics
      • Tokenomics Score
      • Restaking
    • Swagger API Specification
    • Install & run cURL on Windows/MacOSX/Linux
  • Dashboard Functionalities
    • Market Insights
    • Custom API Creation (Nexus)
    • Custom Dashboards (Eagle Eye)
Powered by GitBook
On this page
  1. Data Feeds
  2. API Reference

Restaking

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

PreviousTokenomics ScoreNextInstall & run cURL on Windows/MacOSX/Linux

Last updated 1 year ago

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
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
    }
  ]
}

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
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
    }
  ]
}

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
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
    }
  ]
}
  • GETRetrieves analytical data for the specified protocol from the past 7 days.
  • GETRetrieves analytical data for all supported restaking protocols from the past 7 days.
  • GETRetrieves analytical data for Eigenlayer from the past 7 days.