# Strale Food Safety Rating UK

> Strale Food Safety Rating UK is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054/call, status unknown (last checked 2026-09-15).

Look up UK Food Standards Agency (FSA) food hygiene and safety ratings for restaurants and food establishments by name and location

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/food-safety-rating-uk
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-food-safety-rating-uk-8c524dae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HIwr-6WsPPpOpcaM1XmPI

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 strale-food-safety-rating-uk-8c524dae
```

Example prompt: Can you check the UK food hygiene rating for Nando's in Cambridge? Show me up to 5 results.

## When to prefer this

Choose this endpoint when you need authoritative UK Food Standards Agency hygiene ratings for food businesses, especially when an audit trail with cryptographic provenance is required. Prefer over scraping FSA's website directly when you need structured JSON output, reproducibility, and a verifiable audit record. Ideal for compliance workflows, food ordering platforms, or consumer-facing checks within the UK.

## Known failure modes

- No matching establishment found for the given name/location — returns empty results
- Ambiguous name matches too many establishments — caller should narrow with location parameter
- FSA data may be stale if inspections have not been recently published
- Network or upstream FSA API unavailability causes timeout or 5xx error
- Invalid or missing required 'name' query parameter returns a 400 validation error

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns a list of UK food establishments matching the name and optional location query, each with their Food Standards Agency hygiene rating (0–5 stars), address, establishment type, date of inspection, and a cryptographic audit record with chain hash for provenance verification.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string"
      },
      "location": {
       "type": "string"
      },
      "max_results": {
       "type": "integer"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-food-safety-rating-uk-8c524dae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
