Retrieve a product
Token credential sent in the Authorization header, in the form: Token <your-token>. Requires a staff (admin) account.
The unique identifier of the product.
The requested product.
A product in the catalog.
The unique identifier of the product.
The product name.
The base code shared by variants of the same product.
The unique stock keeping unit.
The product type. The value is the numeric code as a string.
-1— Pre Product0— Simple1— Product Meta2— Bundle3— Grouped-2— Pre Miscellaneous4— Miscellaneous5— Offer
Whether the product is active.
The identifier of the parent product, when the product is a variant.
Whether the product belongs to a seller.
The identifiers of products grouped under this product.
The identifier of the attribute set that defines the product's attributes.
The identifier of an additional custom attribute set.
Whether the product is publicly listable. Determined by the system.
The code that identifies the listable variant grouping.
The identifier of the default data source (seller) for the product.
The storefront URL of the product, when available.
Whether the product requires form input.
Authentication credentials were not provided or are invalid.
The authenticated user does not have administrator privileges.
The requested product does not exist.
GET /api/remote/1/products/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"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?

