Skip to content

Pagination

All API resources, regardless of output format, support pagination via the offset and limit query parameters.

ParameterTypeDefaultDescription
limitinteger10Number of articles to return
offsetinteger0Number of articles to skip before returning results

Both parameters must be integers greater than or equal to 0.

To retrieve the 3rd page of 10 articles:

Terminal window
curl https://widget.slipcase.com/api/v2/feed/?apiKey=YOUR_API_KEY&offset=20&limit=10

This skips the first 20 articles and returns articles 21–30.