Skip to content

Pagination💡

All top-level API resources as well as quite some sub-level resources have support for bulk fetches via "list" API methods. That means that you can list simulation or threedimodel resources in bulk. List API methods take an offset and limit parameter that can be used to customize the pagination response.

Parameter type Description
limit [optional] integer Limit on the number of entries to be returned, between 1 and 250. Default is 10.
offset [optional] integer Start returning objects from this cursor position on. Default is 1.

The top-level keys of response body are

{
  "count":    # total number of resources
  "next":     # url for the next page
  "previous": # url for the previous page
  "results":  # results for this page
}