Pagination
All API resources, regardless of output format, support pagination via the offset and limit query parameters.
Parameters
Section titled “Parameters”| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 10 | Number of articles to return |
offset | integer | 0 | Number of articles to skip before returning results |
Both parameters must be integers greater than or equal to 0.
Example
Section titled “Example”To retrieve the 3rd page of 10 articles:
curl https://widget.slipcase.com/api/v2/feed/?apiKey=YOUR_API_KEY&offset=20&limit=10This skips the first 20 articles and returns articles 21–30.