Get intrinsic yield snapshots
GET/v1/data/lending/yields/intrinsic/snapshots
Returns historical intrinsic yield time series per asset group.
Plain-text reference — GET /v1/data/lending/yields/intrinsic/snapshots
Parameters
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
assetGroups | query | string[] | yes | Asset group keys (repeatable) |
start | query | string | no | ISO start date |
end | query | string | no | ISO end date |
Response 200
| Field | Type | Description |
|---|---|---|
success | True | |
data | object | |
data.count | integer | Number of entries in items. |
data.series | object | Map of assetGroup → array of {dataTs, intrinsicYield} |
actions | null |
Example response
{
"success": true,
"data": {
"count": 1,
"series": {}
}
}
Request
Responses
- 200
- 429
- 500
- 502
Intrinsic yield snapshots
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.