Skip to main content
curl -X GET 'https://product.api.e-cross.tech/ext/inventories?lastUpdateDateFrom=2025-10-06T00:00:00.000Z&nextPageToken='
\ -H 'Authorization: Bearer YOUR_TOKEN' 
{
  "inventories": [
    {
      "id": "ACME-1234567891-1-AVAILABLE",
      "skuId": "1234567891",
      "skuName": "T-Shirt",
      "merchantId": "ACME",
      "quantity": 3,
      "inventoryType": "AVAILABLE",
      "lastUpdateDate": "2026-01-17T19:58:53Z",
      "warehouseId": 1,
      "warehouseName": "Default",
      "warehouseCountry": "ES"
    },
    {
      "id": "ACME-1234567891-1000-AVAILABLE",
      "skuId": "1234567891",
      "skuName": "T-Shirt",
      "merchantId": "ACME",
      "quantity": 1,
      "inventoryType": "AVAILABLE",
      "lastUpdateDate": "2026-01-25T12:15:01Z",
      "warehouseId": 1000,
      "warehouseName": "Returns partner BR",
      "warehouseCountry": "BR",
      "returnedOrders": [
        {
          "orderId": "ACME-ECOM-TEST-003",
          "returnedDate": "2026-01-25T12:15:01Z",
          "quantity": 1
        }
      ]
    }
  ],
  "nextPageToken": "eyJ0eXBlIjoibWFzdGVyIiwibG9jYWxpemF0aW9uU3RhdHVzIjoiUkVBRFlfRk9SX1NBTEVTX0NIQU5ORUwiLCJpZCI6IkFMSEFNQVMtNDQ5NTg4NDI2ODM1NTEiLCJtZXJjaGFudElkIjoiQUxIQU1BUyJ9"
}

Query Parameters

lastUpdateDateFrom
string
Return only inventories updated after this date. Must be in ISO 8601 format (e.g. 2025-10-06T00:00:00.000Z). If not provided, all inventories are returned.
nextPageToken
string
The token to fetch the next page of results. Use the value returned in the nextPageToken field of the previous request. If there are no more results, this field won’t be returned in the response.

Response Fields

inventories
array
Array containing inventories that match the provided filters.
nextPageToken
string
The token to be used in the query parameter to retrieve the next page of results. If there are no more results, this field won’t be returned.