Pagination

Collecting More than 100 Posts from a Query

  • Each request may return up to 100 posts matching your query. However, there may be significantly more results matching your filter parameters.
  • To consume all the data, make sure you keep on calling the same URL string value that appears in the "next" key found in the output for each request.

JSON Output Example:

{
posts: [...],
totalResults: 1000,
moreResultsAvailable: 900,
next: "/getProducts?token=XXXXXXXXXXXX&ts=0&q=&from=100&ns=1686556091178&ni=c2caf6f1c6490c16f20b7da0253f4ca76bc6e679"
}