Get the list of catalog items for marketplaces with optional filters.
Query parameters
-
Filter catalog items by marketplace UUID
-
Filter by marketplace-specific identifier (e.g., ASIN)
-
Filter by Universal Product Code
-
Filter by European Article Number
-
Filter by Global Trade Item Number
-
Filter by International Standard Book Number
-
The page number to retrieve
Minimum value is
1. -
The number of results to return per page
Minimum value is
1, maximum value is100.
GET
/2024-09/marketplaces/catalog-items
curl \
--request GET 'https://app.merchanthq.com/api/2024-09/marketplaces/catalog-items' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"links": {
"first": "https://app.merchanthq.com/api/2024-09/merchants?page=1",
"last": "https://app.merchanthq.com/api/2024-09/merchants?page=10",
"prev": "https://app.merchanthq.com/api/2024-09/merchants?page=1",
"next": "https://app.merchanthq.com/api/2024-09/merchants?page=3"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 10,
"path": "https://app.merchanthq.com/api/2024-09/merchants",
"per_page": 10,
"to": 10,
"total": 20
},
"data": [
{
"id": "1e7f0a0f-b5a9-4d1a-a2d5-d0e0c2b1c3d4",
"marketplace_id": "1e7f0a0f-b5a9-4d1a-a2d5-d0e0c2b1c3d4",
"title": "Wireless Bluetooth Headphones",
"marketplace_identifier": "B08N1W7D4R",
"identifiers": [
{
"id": "1e7f0a0f-b5a9-4d1a-a2d5-d0e0c2b1c3d4",
"marketplace_catalog_item_id": "string",
"type": "UPC",
"value": "string",
"created_at": "2025-01-10T10:37:11Z",
"updated_at": "2025-01-10T10:37:11Z"
}
],
"main_image_id": "2e8f0a0f-b5a9-4d1a-a2d5-d0e0c2b1c3d5",
"main_image_url": "https://example.com/images/2e8f0a0f-b5a9-4d1a-a2d5-d0e0c2b1c3d5.jpg",
"thumbnail_image_id": "3e9f0a0f-b5a9-4d1a-a2d5-d0e0c2b1c3d6",
"thumbnail_image_url": "https://example.com/images/3e9f0a0f-b5a9-4d1a-a2d5-d0e0c2b1c3d6.jpg",
"created_at": "2025-01-10T10:37:11Z",
"updated_at": "2025-01-10T10:37:11Z"
}
]
}
Response examples (401)
{
"message": "Unauthorized"
}