API Documentation
Complete API reference for our inventory management system. Build powerful applications to manage products, track stock, and streamline your business operations.
Authentication
Secure your API calls with OAuth 2.0 client credentials flow
POST
/api/v1/auth/token
Products
Manage your product catalog and inventory
GET
/api/v1/products
Inventory
Track stock levels and inventory movements
GET
/api/v1/inventory
Quick Start
1. Get your access token
curl -X POST https://api.oobali.app/v1/auth/token \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "grant_type=client_credentials&client_id=YOUR_CLIENT_ID&client_secret=YOUR_CLIENT_SECRET"
2. Get your products
curl -X GET https://api.oobali.app/v1/products \
-H "Authorization: Bearer YOUR_API_KEY"