List DeFi Platform Ratings
Returns a paginated list of DeFi product ratings for a specific platform identified by its slug. Supports the same filtering, sorting, and pagination options as the global DeFi listing.
Authorization
apiKey In: header
Path Parameters
The slug identifier of the DeFi platform.
Query Parameters
Filter by rating date (greater than or equal). Format YYYY-MM-DD.
dateFilter by rating date (less than or equal). Format YYYY-MM-DD.
dateFilter by rated-since date (greater than or equal). Format YYYY-MM-DD.
dateFilter by rated-since date (less than or equal). Format YYYY-MM-DD.
dateFilter by DeFi product type.
"lending" | "vault" | "lst" | "liquid-staking" | "hosting" | "smart-contract"Filter by blockchain (e.g. base, optimism, polygon).
Filter by rating methodology version.
Filter by minimum TVL (greater than or equal).
Filter by maximum TVL (less than or equal).
Filter by minimum APY (greater than or equal).
Filter by maximum APY (less than or equal).
Filter by minimum user count (greater than or equal).
Filter by maximum user count (less than or equal).
Field to sort results by.
"rating" | "rated_at" | "rated_since" | "name" | "tvl" | "apy" | "users"Sort order.
"asc""asc" | "desc"Maximum number of results to return.
10Number of results to skip for pagination.
0Response Body
application/json
curl -X GET "https://api.stakingrewards.com/ratings/defi/example-provider"{
"data": [
{
"name": "Example Protocol",
"provider_name": "Example Provider",
"version": "v0.1-alpha",
"type": "lending",
"chain": "Ethereum",
"contract_address": "0x123",
"rating": "BBB+",
"potential_rating": "BBB+",
"rated_at": "2026-02-18",
"rated_since": "2026-02-18",
"profile_url": "http://example.com",
"report_url": "string",
"rating_data": {
"operations": {
"rating": "BBB+",
"sub_categories": {
"documentation_transparency": 0,
"financial_resilience": 0,
"governance": 0,
"team_legal_compliance": 0
}
},
"security": {
"rating": "BBB+",
"sub_categories": {
"key_management_permissions": 0,
"smart_contract_security": 0
}
},
"strategy": {
"rating": "BBB+",
"sub_categories": {
"collateral": 0,
"infra_counterparty_exposures": 0,
"liquidity": 0,
"market": 0,
"protocol_counterparty_exposures": 0,
"protocol_mechanics": 0
}
}
},
"potential_rating_data": {
"operations": {
"rating": "BBB+",
"sub_categories": {
"documentation_transparency": 0,
"financial_resilience": 0,
"governance": 0,
"team_legal_compliance": 0
}
},
"security": {
"rating": "BBB+",
"sub_categories": {
"key_management_permissions": 0,
"smart_contract_security": 0
}
},
"strategy": {
"rating": "BBB+",
"sub_categories": {
"collateral": 0,
"infra_counterparty_exposures": 0,
"liquidity": 0,
"market": 0,
"protocol_counterparty_exposures": 0,
"protocol_mechanics": 0
}
}
},
"risk_metrics": {
"apy": 0,
"tvl": 0,
"users": 0
}
}
]
}List DeFi Ratings GET
Returns a paginated list of all DeFi product ratings across all platforms. Supports filtering by type, chain, TVL, APY, user count, date ranges, and version, as well as sorting and pagination.
Get DeFi Product Rating GET
Returns the rating for a specific DeFi product identified by its platform slug and product identifier.