Skip to content

Pagination

List endpoints return a page of results plus a meta envelope describing the full set.

ParameterDefaultNotes
page1The page number to fetch.
per_page25Results per page. Maximum 100; larger values are clamped.
{
"materials": [ /* … */ ],
"meta": {
"current_page": 1,
"total_pages": 4,
"total_count": 87,
"per_page": 25
}
}

Request page=1, then keep incrementing page until current_page equals total_pages. An empty result set returns an empty array (not an error) with total_count: 0.