Get lender IDs
GET/v1/data/lender-ids
Returns every supported protocol identifier as a flat array of strings. These are the values accepted by the lender query parameter and used as the first segment of a marketUid. Also published as the LenderId schema so it can be code-generated.
Plain-text reference — GET /v1/data/lender-ids
Response 200
| Field | Type | Description |
|---|---|---|
success | True | |
data | string[] | Sorted list of supported lender protocol identifiers. |
actions | null |
Example response
{
"success": true,
"data": [
"AAVE_V2",
"AAVE_V3",
"COMPOUND_V2",
"COMPOUND_V3_USDC",
"EULER_V2",
"INIT",
"LISTA",
"MORPHO",
"SPARK",
"VENUS"
]
}
Responses
- 200
- 429
- 500
- 502
Lender IDs
Rate limited. Unauthenticated callers share a per-IP budget; send an x-api-key header to lift it. Retry with exponential backoff.
Unexpected server error. Safe to retry with backoff.
An upstream data source or protocol origin failed (error.code is ORIGIN_FAILED). error.details carries the per-origin status. This is also what a missing or malformed required parameter currently returns, rather than a 400.