Welcome
The Salesive Store API provides a complete e-commerce solution for managing products, customer sessions, shopping carts, orders, shipping, and merchandising. Use this reference to build storefronts, mobile apps, or custom integrations that mirror production Salesive environments.Base URL
Authentication
The Salesive Store API uses JWT (JSON Web Token) authentication for protected endpoints.Guest Sessions
Create anonymous guest users viaPOST /auth/ghost to enable browsing, cart management, and wishlist features without registration.
Authenticated Users
For full access, users authenticate via email with OTP (one-time password) verification:- Send OTP to email:
POST /auth/authenticate - Verify OTP:
POST /auth/verify - Use the returned JWT token in the
Authorizationheader asBearer <token>
Public Endpoints
Product listings, banners, and blog content are publicly accessible without authentication.Headers
| Header | Description |
|---|---|
Authorization | JWT token as Bearer <token> for authenticated endpoints. |
Content-Type | application/json when sending JSON payloads. |
x-shop-id | Storefront identifier to scope requests to a specific shop. |
Rate limits
Salesive applies per-store throttling. If your integration receives429 Too Many Requests, retry with exponential backoff. Contact support if you need higher throughput.
Collections
- Authentication — Create guest sessions or authenticate users with email OTP verification.
- Products — List, filter, search, and retrieve product information with variants.
- Cart — Manage shopping cart items, quantities, and product variants.
- Shipping Address — Save, retrieve, and manage delivery addresses with geocoding support.
- Orders — Create orders from cart, track order status, and manage shipments.
- Shipping — Get shipping options and track shipments for orders.
- Wishlist — Save and manage customer wishlists across sessions.
- Banners — Retrieve merchandising banners for storefronts.
- Blogs — Access editorial content and announcements.
Address Intelligence
The API integrates with Geoapify for enhanced address management:- Reverse Geocoding — Convert coordinates to addresses
- Address Autocomplete — Real-time address suggestions as users type

