No keywords. Just intent.Search built on
Search built on
intent, not keywords.
Drop-in widget. REST API with a real "Try It" playground. Multimodal: text, voice, image. Integrate in hours, not weeks.
$
{"newProducts":120,"updatedProducts":34,"failed":0}$
What you can build
Three integration paths. One platform.
Embeddable widget
Drop-in on any site (isolated Shadow DOM). Semantic, voice and image search, comparison, AI assistant. 9 languages.
Learn moreREST API
32 public endpoints for product sync, search, tracking and analytics. OpenAPI 3.1 with a real "Try It" playground.
Learn morePlugins & SDKs
WordPress (official) or custom server-to-server integration on any stack.
Learn moreGet started in 60 seconds
1. Embed the widget
A single script tag. No npm, no build step. Lazy load, SRI verified, Shadow DOM.
index.html
<div id="neuroon-search"></div>
<script
src="https://cdn.neuroon.ai/widget.js"
data-token="YOUR_WIDGET_TOKEN"
data-container="#neuroon-search"
data-theme="auto"
data-locale="es">
</script>Server-to-server
2. Sync your catalog
Up to 500 products per request. Idempotent (upsert by externalId). Indexed in 2–5 s.
sync.sh
curl -X POST https://api.neuroon.ai/api/plugin/shops/$SHOP_ID/products/sync \
-H "X-Shop-API-Key: $SHOP_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"syncType": "INCREMENTAL",
"products": [{
"externalId": "sku-001",
"name": "Camiseta Premium",
"price": 29.99,
"currency": "EUR",
"url": "https://miteinda.com/p/camiseta-premium"
}]
}'