Developer API

Connect your existing tools with Foodivo using our robust REST API. Synchronize inventory, export sales data, and more.

01. Authentication

All API requests require a Developer API Key. You can generate keys in your POS Admin settings under 'Business & Billing' > 'API Keys'.

Header NameAuthorization
Header ValueBearer YOUR_API_TOKEN

02. Core Endpoints

GET
/v1/products

Retrieve all products in your catalog

GET
/v1/orders

Fetch recent orders and their statuses

GET
/v1/customers

Manage your customer list and loyalty points

03. Code Examples

# Example cURL Request
curl -X GET "https://api.risak.app/v1/products"   -H "Authorization: Bearer YOUR_API_TOKEN"