/catalog/prices
Get prices for items
Returns calculated prices for a batch of items. Supports customer-specific pricing for authenticated B2B sessions via the session token. Respects channel price lists, campaigns, and quantity breaks.
Show the full description
Maximum 100 item ids per request; ids that cannot be parsed are skipped. With GUIDs the URL runs out before that limit does — use POST /ecom/catalog/prices for longer lists.
Query parameters
| Field | Type |
|---|---|
itemIds
Required
|
string |
Responses
PricesResponse
| Field | Type |
|---|---|
currency
|
string · nullable |
prices
|
ItemPrice[] · nullable |
-
Retry-After— Seconds to wait before retrying.
Standard errors:
400
404
Errors
Examples
curl "https://api.erp.fluit.cloud/ecom/catalog/prices" \
-H "Authorization: Bearer $SESSION_TOKEN" \
-H "X-Tenant-Id: $FLUIT_TENANT_ID" \
-H "X-Channel: web"
{
"currency": "string",
"prices": [
{
"itemId": "0f8b2c1e-4d3a-4b7e-9f10-2a6c5d8e1b44",
"listPrice": "299.00",
"lowestPrice30Days": "299.00",
"priceListName": "Retail 2026",
"quantityBreaks": [
{
"maxQuantity": "10",
"minQuantity": "10",
"unitPrice": "299.00"
}
],
"source": "string",
"unitPrice": "299.00"
}
]
}
Base URL https://api.erp.fluit.cloud/ecom. The response example is generated from the schema: the shape is right, the values are made up.