Esri's Geotrigger Service is replacing Geoloqi! Learn More | FAQ

Paging

Some API calls will limit the number of items returned and you will need to request items in pages.

Parameters

  • offset Default: 0
    The offset at which to start retrieving results.
  • limit Default: 25
    The number of results to return per page.

Response

Methods that support paging will contain an additional object in their response, called paging.

You will always get back the total number of results, the number of items per page (limit). If there are additional records, the response will also contain a next_offset parameter which you can use to retrieve the next page of results.

{
  "paging" {
    "next_offset": 25,
    "limit": 25,
    "total": 137
  }
}