GET
/stars.listList starred items
Lists the items starred by a user. Use the pagination parameters to retrieve the collection in pages, with cursor set to the next_cursor value from the previous response when available. The response includes paging information alongside the starred items.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
tokenstringoptional
Authentication token with the `stars:read` scope.
countstringoptional
Number of starred items to request for the page.
pagestringoptional
Page number for the collection.
cursorstringoptional
Pagination cursor; set it to the `next_cursor` value returned by the previous response.
limitintegeroptional
Maximum number of items to return; fewer items may be returned even when more remain.
200Returns an object containing the starred `items`, an `ok` value of true, and paging information including the current page and total count.
itemsarray<array>required
okbooleanrequired
pagingobjectoptional
defaultReturns an error object with `ok` set to false and an `error` value describing why the starred items could not be listed.
callstackstringoptional
Note: PHP callstack is only visible in dev/qa
errorstringrequired
okbooleanrequired
Error handling
Provide token with the stars:read scope when authentication is required. Pagination is mandatory: use cursor from the previous response_metadata.next_cursor, and use limit to control the maximum number of items returned.