Search for catalog items in a channel's marketplace
Query parameters
-
Search by title/keywords
-
Search by marketplace identifier (e.g., ASIN)
-
Search by UPC
-
Search by EAN
-
Search by GTIN
-
Search by ISBN
Responses
-
A successful response returning the catalog items
-
The request requires user authentication or the user is not authorized to access this resource.
-
Forbidden - The user does not have permission to access this resource.
-
The specified resource was not found
-
The request was unprocessable due to validation errors
GET
/2024-09/channels/{channel}/catalog-search
curl \
--request GET 'https://app.merchanthq.com/api/2024-09/channels/1e7f0a0f-b5a9-4d1a-a2d5-d0e0c2b1c3d4/catalog-search' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"title": "Wireless Bluetooth Headphones",
"marketplace_identifier": "B08N1W7D4R",
"images": [
"https://example.com/image1.jpg"
],
"identifiers": [
{
"type": "UPC",
"value": "012345678905"
}
]
}
]
}
Response examples (401)
{
"message": "Unauthorized"
}
Response examples (403)
{
"message": "This action is unauthorized."
}
Response examples (404)
{
"message": "Not found"
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field_name": [
"The field name field is required."
]
}
}