Strategies
Strategy Info
Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
Strategies
Strategy Info
Fetch detailed information for a specific strategy
GET
/
eigenlayer
/
strategy-info
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/strategy-info
{
"strategy": "<string>",
"token": "<string>",
"whitelisted": true,
"thirdPartyTransfersForbidden": true,
"withdrawalDelayBlocks": 123,
"tvl": 123,
"withdrawals": 123,
"createdAt": {
"blockNumber": "<string>",
"blockTimestamp": "<string>",
"transactionHash": "<string>"
},
"updatedAt": {
"blockNumber": "<string>",
"blockTimestamp": "<string>",
"transactionHash": "<string>"
}
}
Query Parameters
The strategy address (required)
Response
200
application/json
Detailed information about the strategy
The response is of type object
.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/strategy-info
{
"strategy": "<string>",
"token": "<string>",
"whitelisted": true,
"thirdPartyTransfersForbidden": true,
"withdrawalDelayBlocks": 123,
"tvl": 123,
"withdrawals": 123,
"createdAt": {
"blockNumber": "<string>",
"blockTimestamp": "<string>",
"transactionHash": "<string>"
},
"updatedAt": {
"blockNumber": "<string>",
"blockTimestamp": "<string>",
"transactionHash": "<string>"
}
}