Welcome to Neuroon
Neuroon is an AI sales agent for e-commerce. It turns store visits into purchases through conversational search, personalized recommendations, and guided assistance — all integrated into your store.
This documentation describes what exists today in production. It is not a roadmap and does not list planned capabilities as if they were available. If a capability is not listed here, assume it is not yet implemented and check What's not supported.
Who Neuroon is for
- Stores with a catalog of at least several hundred products where lexical search already fails (synonyms, long descriptions, heterogeneous attributes).
- Teams that can sync the catalog through the API (server-to-server) and embed a widget in the front end.
- Heterogeneous stacks: WordPress/WooCommerce, .NET / WordPress, custom stores in Node, PHP, Python, Java, or Ruby.
Product map
Neuroon ships three surfaces that integrate independently:
- Widget: Preact component embedded via a
<script>tag from the CDN (cdn.neuroon.ai). There is no officialnpmpackage. - Widget API (
/api/widget/*): consumed by the browser, authenticated with a Widget Token (headerX-Widget-Token). - Integrations API (
/api/integrations/v1/*): consumed by your server (WordPress, custom) to sync products, verify the domain, and report conversions. Authenticated withAuthorization: Bearer <api-key>.
How Neuroon integrates with your store
A minimal viable integration consists of:
- Provisioning a shop in the Dashboard and getting your API Key.
- Syncing the catalog via
POST /api/integrations/v1/products/sync. Batches of up to 500 products per request. - Embedding the widget with a
<script>tag anddata-*attributes (data-token,data-container,data-locale,data-api-url). - Tracking clicks and conversions to close the learning loop.
Further reading
- How to get your API Key — mandatory first step.
- Quickstart — from zero to widget in 10 minutes.
- Widget · Overview — embeddable widget capabilities.
- API · Overview — full server-to-server API reference.