The products resource exposes the items available for order at each bakery. Fetching a bakery’s catalog is public; retrieving a single product by ID requires a Firebase auth token.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/AndrewwCO/Panahashi/llms.txt
Use this file to discover all available pages before exploring further.
GET /products?bakeryId= — fetchProductsByBakery(bakeryId)
Returns all available products for a given bakery. No authentication required.
This endpoint is public. No
Authorization header is needed.Request parameters
The ID of the bakery whose products you want to list.
Response fields
Unique product identifier.
Display name of the product.
Unit price in the local currency.
Emoji used to visually represent the product in the UI.
Short description of the product.
ID of the bakery this product belongs to.
Example
GET /products/:id — fetchProductById(id)
Returns a single product by its ID. Requires Firebase authentication.
Request parameters
The unique identifier of the product to fetch.
Response fields
Returns a single product object with the same shape asfetchProductsByBakery().