Skip to main content

Paging

RxVantage API Paging Basics

Overview

Numerous endpoints in the RxVantange API Specification support and array of results.

The API supports pagination using the limit and offset query parameters. These parameters help control the number of results returned and specify where to start fetching records.

Query Parameters

  • limit: Defines the number of results per page.
  • offset: Specifies the starting position of the results.

Example Requests

Fetch the First 10 Records

curl -X GET "https://rest-api-sandbox.rxvantage.com/items?limit=10&offset=0"