Skip to main content
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"
}
FieldDescription
resultsItems for this page
results_countCount of items returned
has_moretrue if there are more pages
next_cursorPass 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

ParameterTypeDefaultMax
limitinteger1001000
cursorstring
Cursors are opaque. Don’t parse, modify, or construct them — the format may change without notice.
Last modified on March 29, 2026