# Oromi UK Food Hygiene Ratings Lookup

> Oromi UK Food Hygiene Ratings Lookup is a paid API for AI agents from agents.oromi.co.uk, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Look up food hygiene ratings for UK businesses by name and location using official government data

## Facts

- Endpoint: GET https://agents.oromi.co.uk/api/uk-business/food-hygiene
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oromi-uk-food-hygiene-ratings-lookup-c35c44dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EZWoMmW_9xEDQ4B5yuJhs

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability oromi-uk-food-hygiene-ratings-lookup-c35c44dd
```

Example prompt: Can you check the food hygiene rating for Dishoom in London — I want to make sure it's rated 5 before I book a table there.

## When to prefer this

Use this endpoint when you need official UK Food Standards Agency hygiene ratings for a specific named business, especially when verifying food safety before booking, ordering, or recommending a venue. Prefer this over general web search when you need structured, machine-readable rating data with inspection dates rather than scraped or unverified sources.

## Known failure modes

- No matching business found for the given name and location — returns empty results array
- Ambiguous business name matches multiple establishments — returns multiple results requiring further filtering
- Invalid or unrecognised postcode/town — may return empty results or an error
- Payment failure via x402 protocol — endpoint returns 402 Payment Required before data is served

## How this service works

Machine-payable APIs for AI agents, paid per call in USDC via the x402 protocol: UK business data (Companies House), UK property market data (HM Land Registry), website agent-readiness audits, and crypto market context.

## Output

Returns a list of matching businesses with their official food hygiene rating (0-5 scale), the date of the most recent inspection, and the business name as recorded by the Food Standards Agency.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "name": {
       "type": "string",
       "description": "Business name"
      },
      "address": {
       "type": "string",
       "description": "Town or postcode"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "results": [
   {
    "rating": "5",
    "rating_date": "2025-11-02",
    "business_name": "Dishoom"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oromi-uk-food-hygiene-ratings-lookup-c35c44dd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.oromi.co.uk](https://www.zero.xyz/host/agents.oromi.co.uk/llms.txt)
