REGOR

Set up Regor

Get Cortex Search, Rank, and Enrich connected in minutes

Push your product catalog

Send your products to Regor via the Catalog API. Use your secret key (sk_live_) for server-to-server requests. You can find your API keys in Settings from your dashboard.

curl
curl -X POST https://api.regor.ai/v1/catalog/upsert \
  -H "X-API-Key: YOUR_SK_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "products": [
      {
        "id": "SKU-001",
        "sku": "SKU-001",
        "name": "Example Product",
        "category": "Category",
        "price": 29.99,
        "available": true,
        "product_url": "https://yourstore.com/products/example"
      }
    ]
  }'

Required fields: id, sku, name, category, price, available, product_url

You can also upload a CSV file via POST /v1/catalog/upload. See the integration guide for details.