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:07

Other 2 parameters are "page" and "size", that are used for pagination. Maximum page size is 2500.

Request

Request:

HTTP MethodGET
URLStagehttps://api.qa2.ananastest.com/product/api/v1/merchant-integration/basic-products
Productionhttps://api.ananas.rs/product/api/v1/merchant-integration/basic-products
HTTP Headers
Header nameHeader value
AuthorizationBearer {access_token}
URL Parameters
Parameter nameParameter description
dateModifiedAfterSearch products modified after specified date
pagePage number - Starts from 0
sizeNumber of products show by page

Response

Response Body:

Fields nameTypeDescription
idLongProduct unique identifier
eanStringEuropean Article Number
skuStringStock keeping unit
newBasePriceBigDecimal/DoubleProduct price with VAT included for the next day
basePriceBigDecimal/DoubleProduct price with VAT included
stockLevelIntegerProduct available stock level
warehouseStringWarehouse possible values ['ANANAS_WAREHOUSE', 'MERCHANT_WAREHOUSE']

Example of response:

Click to copy
Success!
[
    {
        "id": 19365,
        "sku": null,
        "ean": "0436421111444",
        "stockLevel": 11,
        "newBasePrice": 11245.00,
        "basePrice": 11245.00,
        "warehouse": "ANANAS_WAREHOUSE"
    }  
]
Copyright © Ananas 2023. All right reserved.