Nilo Developer Portal
Build powerful B2B integrations with our comprehensive API platform. Manage products, inventory, orders, and promotions seamlessly.
Quick Start
Get your API token and start integrating in minutes
// Get your access token
const response = await fetch('https://api.nilo.com/login', {
method: 'POST',
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
clientId: 'your-client-id',
clientSecret: 'your-client-secret'
})
});
const { access_token } = await response.json();
// Use the token for subsequent requests
const products = await fetch('https://api.nilo.com/products', {
headers: {
'x-api-key': 'YOUR_API_KEY',
'Authorization': `Bearer ${access_token}`
}
});Everything you need
A complete platform for B2B integrations
π
Secure Authentication
Industry-standard security with API keys and JWT tokens. Simple setup, robust protection.
π¦
Product Management
Complete catalog management with brands, categories, and product variants.
π
Inventory Control
Real-time stock tracking across multiple locations with grouper support.
π
Order Processing
Handle orders from creation to fulfillment with status tracking.
π―
Promotions Engine
Create and manage discounts, offers, and promotional campaigns.
π
Webhooks
Real-time notifications for orders, inventory changes, and more.