Get Products (basic) NEW !!! (2026-03-25)
GET REST API request that returns list of all current products that are linked to merchant. Response example is shown below.
"Authorization" header
Parameter "dateModifiedAfter" will filter out all products that are modified after a specified date. The pattern for date format is yyyy-MM-ddTHH-mm-ss. For example:
https://api.qa2.ananastest.com/product/api/v1/merchant-integration/basic-products?dateModifiedAfter=2025-07-10T13:05:07Other 2 parameters are "page" and "size", that are used for pagination. Maximum page size is 2500.
Request
Request:| HTTP Method | GET | |||||||||
| URL | Stage | https://api.qa2.ananastest.com/product/api/v1/merchant-integration/basic-products | ||||||||
| Production | https://api.ananas.rs/product/api/v1/merchant-integration/basic-products | |||||||||
| HTTP Headers |
| |||||||||
| URL Parameters |
|
Response
Response Body:| Fields name | Type | Description |
| id | Long | Product unique identifier |
| ean | String | European Article Number |
| sku | String | Stock keeping unit |
| newBasePrice | BigDecimal/Double | Product price with VAT included for the next day |
| basePrice | BigDecimal/Double | Product price with VAT included |
| stockLevel | Integer | Product available stock level |
| warehouse | String | Warehouse possible values ['ANANAS_WAREHOUSE', 'MERCHANT_WAREHOUSE'] |
Example of response:
[
{
"id": 19365,
"sku": null,
"ean": "0436421111444",
"stockLevel": 11,
"newBasePrice": 11245.00,
"basePrice": 11245.00,
"warehouse": "ANANAS_WAREHOUSE"
}
]