FoodGuard Mobile API
  1. Lookups
FoodGuard Mobile API
  • Authentication
    • User Login
      POST
    • User Logout
      POST
  • Lookups
    • Branches
      • List
      • Show
    • Suppliers
      • List
      • Show
    • List Food Categories
      GET
  • Inspection
    • Lookup Batch by QR/Barcode
      GET
    • Initialize Inspection Batch
      POST
    • Upload Sample Image for AI Analysis
      POST
    • Finalize Batch Inspection
      POST
  • History
    • Get Inspection History
      GET
  • Inspector Dashboard
    • Get Home Screen Stats
      GET
  • Food Safety
    • Submit Truck Inspection Data
      POST
    • Upload Sample Label Photo
      POST
    • Analyze Label Image (OCR)
      POST
  • Settings
    • Get Quality Thresholds
      GET
  • Schemas
    • User
    • Branch
    • Supplier
    • BatchInitResponse
    • AISampleResult
    • ErrorResponse
    • ValidationErrorResponse
    • TruckInspectionRequest
    • TruckInspectionResponse
    • Category
    • ThresholdSettings
  1. Lookups

List Food Categories

GET
/lookups/categories
Returns all food categories with their temperature thresholds for quality inspection.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or

Responses

🟢200
application/json
List of food categories with thresholds
Body

Example
{
    "success": true,
    "data": [
        {
            "id": 1,
            "name": "Fresh Seafood",
            "max_temp": 2,
            "unit": "°C"
        }
    ]
}
Modified at 2025-12-24 10:09:40
Previous
Show
Next
Lookup Batch by QR/Barcode
Built with