GET
List Products (paginated)
Returns a paginated list of products (SKUs). Supports filtering, searching, and sorting.
Note
The common use cases are: Sync products into your catalog UI, filter by category/subcategory, search by name / ID (depending on searchBy).
Parameters
pageNointeger
Page number to retrieve. Used for pagination; typically starts at 1 unless specified otherwise.
pageSizeinteger
Number of items to return per page. Higher values return more results but increase response size.
sortBystring
Field used to sort results. Must be one of the supported sortable fields.
sortOrderstring
Sort direction for the selected sortBy field. Accepted values are typically asc or desc.
searchBystring
Field to search against. Must be provided when using searchQuery.
searchQuerystring
Text value used to filter results based on the searchBy field.
categorystring
Filters results to a specific product category. Must match a valid category value.
GET/skus/
curl -X GET "https://api.pixelbin.io/service/platform/misc/v2.0/skus/" \
-H "Authorization: Bearer {apitoken}"
Response
No example available.