GET
/
metrics
/
historical
/
avs
/
{address}
curl --request GET \
  --url https://api.eigenexplorer.com/metrics/historical/avs/{address} \
  --header 'X-API-Token: <x-api-token>'
{
  "data": [
    {
      "timestamp": "2024-04-11T08:31:11.000Z",
      "tvlEth": 10,
      "totalStakers": 10,
      "totalOperators": 10
    }
  ]
}

Headers

X-API-Token
string
required

API Token for authentication

Path Parameters

address
string
required

AVS service manager contract address

Example:

"0x870679e138bcdf293b7ff14dd44b70fc97e12fc0"

Query Parameters

frequency
enum<string>
default:1d

Frequency of data points

Available options:
1d,
7d
variant
enum<string>
default:cumulative

Type of tally, discrete or cumulative

Available options:
discrete,
cumulative
Example:

"cumulative"

startAt
string
default:

Start date in ISO string format

Example:

"2024-04-11T08:31:11.000"

endAt
string
default:

End date in ISO string format

Example:

"2024-04-12T08:31:11.000"

Response

200
application/json
The historical aggregate data for an AVS including TVL, total number of stakers, and total number of operators at specified timestamp values.
data
object[]
required