curl --request GET \
--url https://api.octav.fi/v1/chains/{chainKey}/protocols \
--header 'Authorization: Bearer <token>'{
"data": [
{
"uuid": "<string>",
"name": "<string>",
"key": "<string>",
"imgSmall": "<string>",
"imgLarge": "<string>",
"isUserProtocol": true
}
],
"pagination": {
"page": 123,
"limit": 123,
"hasMore": true
}
}List DeFi protocols available on a specific chain.
Cost: Free (0 credits)
Get your API key: Dev Portal
curl --request GET \
--url https://api.octav.fi/v1/chains/{chainKey}/protocols \
--header 'Authorization: Bearer <token>'{
"data": [
{
"uuid": "<string>",
"name": "<string>",
"key": "<string>",
"imgSmall": "<string>",
"imgLarge": "<string>",
"isUserProtocol": true
}
],
"pagination": {
"page": 123,
"limit": 123,
"hasMore": true
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Chain identifier (e.g. "ethereum", "solana", "arbitrum"). Must match a chain's key field from the Chains endpoint.
Page number for pagination
x >= 1Number of protocols per page (1-100)
1 <= x <= 100Was this page helpful?