Skip to main content
Use the page query parameter with a number to change the page number.
GET https://api.obselite.com/v0/labels?page=2
By default, lists are 10 items per page.
Use the limit query parameter with a number to change the number of resources per page.
GET https://api.obselite.com/v0/labels?limit=3
Use the offset query parameter with a number to change the starting point of the page.
GET https://api.obselite.com/v0/labels?offset=3
For example, if you set the limit to 3 and offset to 5, you will read the 6th, 7th, and 8th resources:
Skip (1, 2, 3, 4, 5) Take [6, 7, 8] 9, 10, ...