All list endpoints return paginated results. The default page size is 100, max is 1,000.
Response fields
{
"object": "yield_series",
"results": [...],
"results_count": 100,
"has_more": true,
"next_cursor": "2025-01-15"
}
| Field | Description |
|---|
results | Items for this page |
results_count | Count of items returned |
has_more | true if there are more pages |
next_cursor | Pass as ?cursor= to get the next page |
Paging through results
# First page
curl -H "X-API-Key: $VINTL_API_KEY" \
"https://api.vintl.io/v1/treasury/yields?limit=100"
# Next page — use next_cursor from previous response
curl -H "X-API-Key: $VINTL_API_KEY" \
"https://api.vintl.io/v1/treasury/yields?limit=100&cursor=2025-01-15"
Parameters
| Parameter | Type | Default | Max |
|---|
limit | integer | 100 | 1000 |
cursor | string | — | — |
Cursors are opaque. Don’t parse, modify, or construct them — the format may change without notice.