Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.data-hub.verolabs.co/llms.txt

Use this file to discover all available pages before exploring further.

Request hygiene

RecommendationWhy it matters
Always use clear time rangesSmaller responses and easier debugging
Set a reasonable limitAvoids fetching more data than needed
Use cursor paginationMore stable than offset-based pagination
Cache slow-changing dataInstruments, reports and fund metadata do not need constant refetching
Retry with backoffAvoids retry storms during temporary errors

Time range guidance

Use caseRecommendation
Intraday chartsQuery by session or day
Long history chartsSplit requests into time windows
News feedsQuery by day or latest timestamp
Batch analyticsUse pagination and store progress on the client side

Pagination flow

1

Send the first request

Include the limit that matches your UI or processing batch size.
2

Check next_cursor

If the response includes next_cursor, another page is available.
3

Request the next page

Send the same request with cursor set to the returned token.

Error handling

StatusSuggested handling
400Fix query parameters or time format
401Check account credentials
404Check the requested ID, symbol or code
429Slow down and retry later
503Retry with backoff after a short delay