API Response

After posting an API request, you will get an HTTP response JSON formatted, with the following fields -

Field Name

Field Type

Description

Field Name

Field Type

Description

itemsTotal

int

Total items available to return for this query.
For performance purposes, this value will return the actual count for the first page only (index 0).
Will return -1 for all other pages.

items

JSON array

Items matching to specified query, as a JSON array.

Example Response

{ "itemsTotal": 2536, "items": [ { "<item>": "<value>", "<item2>": "<value2>" }, { "<item>": "<value>", "<item2>": "<value2>" }, { "<item>": "<value>", "<item2>": "<value2>" } ] }