Last Updated:
Data Source: GET /api/v1/store/stores/{store}/catalog
No authentication required for public catalog reading.
curl -X GET "http://localhost:8000/api/v1/store/stores/1/catalog" -H "Accept: application/json"
final storeId = 1;
final response = await dio.get('/api/v1/store/stores/$storeId/catalog');
print(response.data);
Basic information about the store, including category, branches, and working hours.
| Field | Type | Description |
|---|
Products grouped under each menu category (eager-loaded inside categories).
| Field | Type | Description |
|---|
Active offers for the store's products.
| Field | Type | Description |
|---|