Retrieve collection products (listings) from a specific vendor with optional filtering by collection URLs. This endpoint provides paginated results with metadata for efficient browsing of large product catalogs.
Request
Your API key for authentication
The vendor/brand name to filter by
Page number for pagination (minimum: 1)
Number of collection products per page (minimum: 1, maximum: 100, default: 10)
Response
Array of listiings Unique identifier for the collection product
Array of product image objects Unique identifier for the image
Position/order of the image in the gallery
Product pricing information Currency code (e.g., “USD”)
Compare at price value (null if no comparison price)
ISO 8601 timestamp when the product was first added
ISO 8601 timestamp when the product was last updated
Pagination metadata Total number of listings matching the query
Total number of pages available
Error Responses
Error message describing what went wrong
Additional details about the error
curl -X POST https://api.getcatalog.ai/v1/listings \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"vendor": "18east.co",
"page": 1,
"page_size": 10
}'
{
"collection_products" : [
{
"id" : "bdc8f674-3ee7-444f-8f48-ef5f9c2bf4cf" ,
"url" : "https://18east.co/products/ida-bomber-moss-brown" ,
"name" : "IDA INSULATED BOMBER JACKET - MOSS / BROWN HERRINGBONE WOOLEN TWEED" ,
"images" : [
{
"id" : "24865584-1ffe-4fd8-ba59-7866744f1d4a" ,
"url" : "https://cdn.shopify.com/s/files/1/0026/8707/4416/files/2024_18E_WINTER_068_ab9b99a1-60f9-4f0c-b5ec-4cdefdee364f.jpg?v=1731645869" ,
"width" : 2880 ,
"height" : 3600 ,
"position" : 1
},
{
"id" : "a9afe970-8727-4839-ba82-f4ad07d074ab" ,
"url" : "https://cdn.shopify.com/s/files/1/0026/8707/4416/files/2024_18E_WINTER_072_fa695e3d-d0bb-4aff-a77a-750029a46e8c.jpg?v=1731645869" ,
"width" : 2880 ,
"height" : 3600 ,
"position" : 2
}
],
"price" : {
"currency" : "USD" ,
"current_value" : 478 ,
"compare_at_value" : null
},
"vendor" : "18east.co" ,
"first_seen_by_catalog" : "2025-09-02T07:27:26.545676+00:00" ,
"last_updated_by_catalog" : "2025-09-02T07:31:35.43881+00:00"
}
],
"meta" : {
"total_items" : 333 ,
"total_pages" : 34 ,
"current_page" : 1 ,
"page_size" : 10
}
}