Get all products
This endpoint is used for all data manipulation with products - creating, updating, removing and also for updating specific values of stocks, prices and mapping to each of the marketplaces
Get all my products
Query parameters
-
limit
integer(int32) How many items to return at one time (max 100)
GET
/products
curl \
--request GET 'api.services.omnicado.com/api/v2/products' \
--header "X-OMNICADO-TOKEN: $API_KEY"
Response examples (200)
[
{
"id": 42,
"itemgroupId": "string",
"createdAt": "2025-05-04T09:42:00Z",
"updatedAt": "2025-05-04T09:42:00Z",
"currency": "CZK",
"remoteId": "H839941",
"ean": "0764502620",
"brand": "Amazon",
"isActive": true,
"isAvailable": true,
"vat": 21.0,
"dataSource": {
"id": 42,
"createdAt": "2025-05-04T09:42:00Z",
"updatedAt": "2025-05-04T09:42:00Z",
"title": "Products for Amazon",
"language": "cs_CZ",
"currency": "CZK",
"isActive": false,
"source": "api",
"pairingStrategy": "remoteId",
"defaultBrand": "OMNICADO",
"strategies": [
{
"pricing": [
{
"sellingMargin": 42.0,
"automaticMarkup": 42.0
}
],
"stock": [
{
"defaultStockValue": 42.0,
"propagateDeliveryDelay": true
}
]
}
]
},
"price": {
"sellingPrice": 42.0,
"buyPrice": 42.0,
"forcedPrice": 42.0,
"salePrice": 42.0,
"currency": "CZK",
"strategies": [
{
"remoteId": "H1234443",
"productSetId": 1234,
"pricingStrategy": [
{
"price": 129.0,
"currency": "CZK",
"connectorId": "mallCz"
}
]
}
]
},
"images": [
{
"id": 42.0,
"imageType": "basic_image",
"source": "https://image.eshop.cz/1.jpg",
"isMain": false,
"isActive": true,
"ranking": 2
}
],
"categories": [
{
"source": [
{
"title": "Domácnost a zahrada",
"slug": "domacnost-a-zahrada",
"remoteId": 123
}
]
}
],
"parameters": [
{
"languageCode": "cs_CZ",
"paramName": "Barva",
"paramValues": [
"Černá",
"Fialová"
]
}
],
"translations": [
{
"languageCode": "cs_CZ",
"title": "Produkt v češtině",
"shortDescription": "Popis v češtině",
"description": "Dlouhý popis v češtině"
}
],
"stock": [
{
"availableStock": 2.0,
"inOurWarehouseAvailableStock": 3.0,
"realStock": 5.0,
"strategies": [
{
"stock": 4.0,
"connectorId": "mallCz"
}
]
}
]
}
]