GET list¶
List the images present in your API. By default GET list returns information about 20 images for each call.
GET resource URL¶
https://wineengine.tineye.com/<company>/rest/list/
Notes¶
The list method’s output order is stable, so you can use offset and limit to implement pagination.
Parameters¶
In addition to the Common parameters there are:
Key | Description |
---|---|
offset (optional) | Skips that many images in the collection, defaults to 0. 0 means to not skip any items. Should be at least 0. |
limit (optional) | Limits the results to this many images, defaults to 20. -1 will return all items. Should be at least -1. |
Request example¶
curl https://wineengine.tineye.com/<company>/rest/list/ --get \
-d "offset=1" \
-d "limit=3"