
Set up Regor
Get AI-powered search running on your store 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.
Your API keys were not found. Please copy them from your signup page and replace the placeholders below.
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.