{
"data": [],
"links": {
"first": "http://genuka-api.test/2023-11/admin/products?page=1",
"last": "http://genuka-api.test/2023-11/admin/products?page=1",
"next": null,
"prev": null
},
"meta": {
"current_page": 1,
"from": null,
"last_page": 1,
"links": [
{
"active": false,
"label": "« Previous",
"page": null,
"url": null
},
{
"active": true,
"label": "1",
"page": 1,
"url": "http://genuka-api.test/2023-11/admin/products?page=1"
},
{
"active": false,
"label": "Next »",
"page": null,
"url": null
}
],
"path": "http://genuka-api.test/2023-11/admin/products",
"per_page": 10,
"to": null,
"total": 0
}
}Products
List all products
Retrieve a paginated list of all products in the authenticated store. Use this endpoint to fetch existing products, filter them, or synchronize them with external services.
GET
/
2023-11
/
admin
/
products
{
"data": [],
"links": {
"first": "http://genuka-api.test/2023-11/admin/products?page=1",
"last": "http://genuka-api.test/2023-11/admin/products?page=1",
"next": null,
"prev": null
},
"meta": {
"current_page": 1,
"from": null,
"last_page": 1,
"links": [
{
"active": false,
"label": "« Previous",
"page": null,
"url": null
},
{
"active": true,
"label": "1",
"page": 1,
"url": "http://genuka-api.test/2023-11/admin/products?page=1"
},
{
"active": false,
"label": "Next »",
"page": null,
"url": null
}
],
"path": "http://genuka-api.test/2023-11/admin/products",
"per_page": 10,
"to": null,
"total": 0
}
}TypeScript SDK Example
import Genuka from "genuka-api";
const genuka = Genuka.initialize({ id: companyId });
await genuka.products.list({ page: 1, limit: 20 });
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Example:
"{{companyId}}"
Query Parameters
Example:
"1"
Example:
"10"
Example:
"services"
Example:
"title"
Example:
"shops"
Example:
"false"
Example:
"en"
Example:
"false"
Example:
"true"
Example:
"0"
Example:
"true"
