Nexway Documentation Portal
Everything you need to integrate with the Nexway Monetize platform — guides, API references, and code examples.
Getting Started
1
Authenticate
Get your JWT token via the /iam/tokens endpoint to authorize all API requests.
JWT Guide →2
Explore APIs
Browse our REST APIs covering commerce, identity, subscriptions, and more.
API Reference →API Reference
Commerce
Core e-commerce APIs for managing products, pricing, carts, orders, and storefronts.
Identity & Access
Authenticate, manage users, and control access to the platform.
Subscriptions & Licensing
Manage recurring subscriptions, licenses, and digital assets.
Marketing & Notifications
Campaigns, notifications, recommendations, and content management.
Quick Start: Authentication
All API requests require a JWT token. Obtain one by sending a POST request to the /iam/tokens endpoint with your credentials.
Request
POST /iam/tokens
Content-Type: application/json
{
"client_id": "api-services",
"client_secret": "YOUR_SECRET",
"realm": "your_realm",
"grant_type": "client_credentials"
}