Development
Development (dev.neuroon.ai) is a managed environment, separate from Production, where we iterate with continuous deploys. It is the recommended environment to integrate and test before touching Production.
URLs
| Resource | URL |
|---|---|
| API | https://dev-api.neuroon.ai |
| Dashboard | https://dev.neuroon.ai |
| Widget CDN | https://cdn.neuroon.ai (same CDN; change data-api-url) |
How to request access
Development is not self-service. To have a Development shop and keys provisioned for you:
- Email Support or your commercial contact with:
- Organization name.
- Stack (your stack).
- Email of the integration owner.
- You will receive an invite to the Development Dashboard (
https://dev.neuroon.ai). - From there you get your Development API Key.
Development credentials are not the same as Production credentials. If you already operate in Production, you will create an additional pair just for Development.
Real limitations
- No SLA. It is a testing environment.
- Database snapshots are not guaranteed.
- Development API keys are invalidated if your account has been inactive for a long time.
- The CDN serves the same widget version as Production. To test pre-release versions, pin
widget@<version>/widget.jswith the version we provide. - Fixed quotas, independent of plan:
products/syncaccepts batches of up to 50 products (not 500 like Production) and there's a maximum of 40 searches/day. These are limits of the testing environment itself — they don't increase with a higher plan. See Plan quotas vs rate limit.
Recommended flow
1. Request DEV access -> receive Dashboard invite
2. Provision DEV Shop with synthetic data (10-50 products)
3. Get DEV API Key
4. Point your integration to https://dev.neuroon.ai with that key
5. Validate: sync, search, suggestions, tracking, conversion
6. Repeat against Production with PROD API Key
Suggested environment variables
Only 2 variables per environment — API base URL and the API Key (server-only):
# Development
NEUROON_API_URL=https://api.neuroon.ai
NEUROON_API_KEY=your_dev_api_key
# Production
NEUROON_API_URL=https://api.neuroon.ai
NEUROON_API_KEY=your_prod_api_key
Further reading
- Production
- Switching environments
- Support — to request access.