Skip to main content

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.

Ready to get started?

Start building your integration today

Read the Docs β†’