GET
/
eigenlayer
/
all-tokens
curl --request GET \
  --url https://api.blockflow.network/rest/eigenlayer/all-tokens
{
  "data": [
    {
      "token": "<string>",
      "strategy": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "decimals": 123,
      "synced": true,
      "sharesUnderlying": 123,
      "ethPrice": 123,
      "dollarPrice": "<string>",
      "updatedAt": "2023-11-07T05:31:56Z",
      "timestamp": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "totalPages": 123,
    "hasMore": true,
    "statistics": {
      "totalTokens": 123,
      "syncedTokens": 123
    }
  }
}

Query Parameters

page
integer
default:
1

The page number for pagination. Defaults to 1.

limit
integer
default:
12

The number of items per page for pagination. Defaults to 12.

token
string

The unique identifier of the token.

symbol
string

The symbol of the token.

synced
boolean

Filter by synced status of the token.

Response

200
application/json
Successful response with token data and metadata.
data
object[]
meta
object