Skip to main content
GET
https://api.getcatalog.ai
/
v2
/
vendors
curl -X GET "https://api.getcatalog.ai/v2/vendors?page=1&page_size=5" \
  -H "x-api-key: $CATALOG_API_KEY"
{
  "data": [
    {
      "vendor": "12thtribe.com",
      "latest_product_update_by_catalog": "2025-11-16T00:21:21.414453+00:00",
      "product_count": 1253,
      "in_affiliate_network": false
    },
    {
      "vendor": "18east.co",
      "latest_product_update_by_catalog": "2026-01-04T18:48:00.329426+00:00",
      "product_count": 387,
      "in_affiliate_network": false
    },
    {
      "vendor": "1stclass-vintage.com",
      "latest_product_update_by_catalog": "2025-11-23T23:02:28.336691+00:00",
      "product_count": 1484,
      "in_affiliate_network": false
    },
    {
      "vendor": "2cuteclothing.com",
      "latest_product_update_by_catalog": "2025-12-19T17:47:02.397774+00:00",
      "product_count": 254,
      "in_affiliate_network": false
    },
    {
      "vendor": "31philliplim.com",
      "latest_product_update_by_catalog": "2025-11-23T23:25:40.15897+00:00",
      "product_count": 2644,
      "in_affiliate_network": true
    }
  ],
  "pagination": {
    "page": 1,
    "page_size": 5,
    "total_items": 540,
    "total_pages": 108,
    "has_next": true,
    "has_prev": false
  },
  "meta": {}
}
When to use: Discover available vendors before browsing their collections or building a product index. See Building a Product Index.

Request

x-api-key
string
required
Your API key for authentication
page
number
Page number (1-indexed, default: 1)
page_size
number
Items per page (default: 20, max: 100)

Response

data
array
Array of vendor summary objects
pagination
object
Pagination metadata
meta
object
Response metadata (currently empty for this endpoint)
curl -X GET "https://api.getcatalog.ai/v2/vendors?page=1&page_size=5" \
  -H "x-api-key: $CATALOG_API_KEY"
{
  "data": [
    {
      "vendor": "12thtribe.com",
      "latest_product_update_by_catalog": "2025-11-16T00:21:21.414453+00:00",
      "product_count": 1253,
      "in_affiliate_network": false
    },
    {
      "vendor": "18east.co",
      "latest_product_update_by_catalog": "2026-01-04T18:48:00.329426+00:00",
      "product_count": 387,
      "in_affiliate_network": false
    },
    {
      "vendor": "1stclass-vintage.com",
      "latest_product_update_by_catalog": "2025-11-23T23:02:28.336691+00:00",
      "product_count": 1484,
      "in_affiliate_network": false
    },
    {
      "vendor": "2cuteclothing.com",
      "latest_product_update_by_catalog": "2025-12-19T17:47:02.397774+00:00",
      "product_count": 254,
      "in_affiliate_network": false
    },
    {
      "vendor": "31philliplim.com",
      "latest_product_update_by_catalog": "2025-11-23T23:25:40.15897+00:00",
      "product_count": 2644,
      "in_affiliate_network": true
    }
  ],
  "pagination": {
    "page": 1,
    "page_size": 5,
    "total_items": 540,
    "total_pages": 108,
    "has_next": true,
    "has_prev": false
  },
  "meta": {}
}