Access restaurant menu data with our simple and powerful API
Follow these steps to start using our API:
x-api-key
/api/menu
Get all menu items
{ "x-api-key": "your-api-key" }Response:
{ "data": [ { "id": 1, "nama": "Nasi Goreng", "harga": 25000, "kategori": "Makanan Utama" } ] }
/api/menu/:id
Get menu item by ID
{ "x-api-key": "your-api-key" }Response:
{ "id": 1, "nama": "Nasi Goreng", "harga": 25000, "kategori": "Makanan Utama" }
/api/auth/register
Register new user
{ "username": "john_doe", "email": "john@example.com", "password": "secure_password" }
/api/auth/login
Login user
{ "email": "john@example.com", "password": "secure_password" }
For more detailed documentation and support, please visit your dashboard after logging in.
Get Started