GET
/
stakers
/
{address}
/
deposits
curl --request GET \
  --url https://api.eigenexplorer.com/stakers/{address}/deposits \
  --header 'X-API-Token: <x-api-token>'
{
  "data": [
    {
      "transactionHash": "0x9d0a355df5a937516dfaed6721b0b461a16b8fad005f66d7dbf56b8a39136297",
      "stakerAddress": "0x74ede5f75247fbdb9266d2b3a7be63b3db7611dd",
      "tokenAddress": "0xe95a203b1a91a908f9b9ce46459d101078c2c3cb",
      "strategyAddress": "0x0fe4f44bee93503346a3ac9ee5a26b130a5796d6",
      "shares": "40000000000000000",
      "createdAtBlock": 19912470,
      "createdAt": "2024-07-07T23:53:35.000Z"
    }
  ],
  "meta": {
    "total": 30,
    "skip": 0,
    "take": 12
  }
}

Headers

X-API-Token
string
required

API Token for authentication

Path Parameters

address
string
required

The address of the staker

Example:

"0x9791fdb4e9c0495efc5a1f3f9271ef226251eb34"

Query Parameters

skip
string
default:0

The number of records to skip for pagination

Example:

0

take
string
default:12

The number of records to return for pagination

Example:

12

Response

200
application/json
The list of deposits.
data
object[]
required
meta
object
required