Getting started
Apply for a pharmacy account, receive API keys, provision your Brand Kit, and make your first Hub API call.
Onboarding checklist
Follow these steps from application through your first live order.
- 1
Apply for a pharmacy account
Submit your application at /register with pharmacy name, contact email, and E.164 phone number. Track status via the onboarding flow.
- 2
Receive API credentials
After approval you get dashboard access, a brand_id, and live + sandbox API keys. Rotate keys from the dashboard at any time.
- 3
Install and configure the CLI
Build @nerionx/cli from the monorepo and persist hubUrl, apiKey, and defaultSlug in ~/.nerionx/config.json.
- 4
Provision your Brand Kit
Run nerionx provision to create the Spoke database, apply migrations, and write .env.<slug> with Hub wiring.
- 5
Sync catalog and integrate checkout
Page through GET /products/sync, mirror locally, then route checkout through your Spoke backend which forwards to Hub POST /orders.
Apply for access
New pharmacies start with a public application — no API key required.
Apply as a pharmacyYour first API call
After approval, list your catalog with a sandbox or live key.
List catalog
Returns brand-scoped SKUs with pagination metadata.
curl -s "https://nerion.syntrik.io/api/v1/products?limit=20&offset=0" \
-H "X-API-Key: nx_live_your_key"