Adding AI search to your Shopify store

Visual + semantic search for Shopify in 10 minutes

For: Shopify store owners with 1K–100K SKUs

The problem

Shopify's default search is keyword-only and fragile. Customers searching for 'red silk wedding saree' won't find a product titled 'Banarasi gold zari kameez' even when that's exactly what they want. The result is a search-bar bounce and a lost sale.

Solution: SearchPixel

  1. Sign up for a PixelAPI key (same key works for SearchPixel)
  2. POST your product catalog to /index — name, description, image URL, price
  3. Drop the search widget JS into your Shopify theme search.liquid
  4. That's it — visual + semantic search live in your storefront

Code

curl -X POST https://searchpixel.pixelapi.dev/index \
  -H "Authorization: Bearer YOUR_PIXELAPI_KEY" \
  -d '{"products":[{"product_id":"sku_42","name":"Banarasi gold zari kameez","price":4999}]}'
Try SearchPixel