Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.oms.verolabs.co/llms.txt

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

Request hygiene

RecommendationWhy it matters
Send the smallest useful requestSmaller responses and easier debugging
Set a reasonable limitAvoids fetching more data than needed
Follow endpoint paginationUse limit, offset or time-range parameters exactly as documented
Cache slow-changing dataConfiguration and reference metadata do not need constant refetching
Retry with backoffAvoids retry storms during temporary errors

Request guidance

Use caseRecommendation
List viewsRequest only the fields and page size needed by the UI
Detail viewsFetch by stable resource identifiers
Background syncUse pagination and store progress on the client side
Temporary failuresRetry with exponential backoff and a maximum retry count

Pagination flow

1

Send the first request

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

Check the response

Inspect whether the endpoint returns enough data for the current view or batch.
3

Request the next page

Increase offset or advance the time range according to that endpoint’s reference page.

Error handling

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