List products
Token credential sent in the Authorization header, in the form: Token <your-token>. Requires a staff (admin) account.
The page number to return.
1The number of items to return per page.
10Orders the results by one or more fields. Separate multiple fields with commas. Prefix a field with a hyphen (-) for descending order.
-idFilter by exact product identifier.
Filter for products with an identifier greater than the given value.
Filter for products with an identifier greater than or equal to the given value.
Filter for products with an identifier less than the given value.
Filter for products with an identifier less than or equal to the given value.
Filter by a comma-separated list of product identifiers.
12,34,56Filter by a comma-separated list of product identifiers.
12,34,56Filter by exact stock keeping unit (SKU).
Filter by exact stock keeping unit (SKU).
Filter by a comma-separated list of SKUs.
SKU-1,SKU-2Filter by exact base code.
Filter by exact base code.
A paginated list of products.
A page of product results.
The total number of products matching the query.
The URL of the next page of results, when available.
The URL of the previous page of results, when available.
Authentication credentials were not provided or are invalid.
The authenticated user does not have administrator privileges.
GET /api/remote/1/products/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"pk": 1,
"name": "text",
"base_code": null,
"sku": "text",
"product_type": "-1",
"is_active": true,
"parent": null,
"attributes": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"attributes_kwargs": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"extra_attributes": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_seller_product": true,
"group_products": [
1
],
"productimage_set": [
{
"pk": 1,
"status": "text",
"image": "text",
"order": 1,
"created_date": "2026-01-01T00:00:00.000Z",
"specialimage_set": [
{}
]
}
],
"attribute_set": 1,
"custom_attribute_set": null,
"is_listable": true,
"listing_code": null,
"data_source": null,
"absolute_url": null,
"is_form_required": true
}
]
}Last updated
Was this helpful?

