HTTP 400validation

Invalid request

invalid_request

What it means

The request body failed validation. The `message` field has the specific reason.

Common causes

How to fix

  1. Read the `message` field — it states exactly what failed.
  2. Cross-check the request schema in the OpenAPI spec at https://regcheck360.com/api/openapi.json.

Example

// 400 response
{
  "error": "invalid_request",
  "message": "ingredients array is required",
  "request_id": "req_…"
}