For Agents
Look up UK food hygiene ratings, search establishments by name or location, and resolve business type, region, and authority reference data.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Food Hygiene Rating Scheme API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Food Hygiene Rating Scheme API API.
Search establishments by name, address, business type, or local authority
Retrieve a single establishment's hygiene rating and inspection details
List business types used by the FHRS classification scheme
Look up local authorities that issue food hygiene ratings
GET STARTED
Use for: I need to look up the food hygiene rating for a restaurant in London, I want to list all establishments in a specific local authority, Search for restaurants by business type 'Restaurant/Cafe/Canteen', Find all establishments with a rating of 5
Not supported: Does not handle restaurant reviews, reservations, or food allergen data — use for UK food hygiene ratings and FHRS reference data only.
Jentic publishes the only available OpenAPI document for Food Hygiene Rating Scheme API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Food Hygiene Rating Scheme API, keeping it validated and agent-ready. The Food Standards Agency runs the Food Hygiene Rating Scheme (FHRS), which scores food businesses across the UK on hygiene standards. The API exposes lookup endpoints for establishments, ratings, business types, regions, local authorities, countries, scheme types, score descriptors, and sort options. It is open and unauthenticated.
Resolve regions and countries used in the rating scheme
Read score descriptors that explain what each rating component means
Page through reference data using basic and full variants of each endpoint
Patterns agents use Food Hygiene Rating Scheme API API for, with concrete tasks.
★ Embed Food Hygiene Ratings on a Listings Site
Pull each venue's FHRS rating via /Establishments and display it on a restaurant listings or review site. The endpoint accepts filters by name, business type, local authority, and region so you can match venues against your own catalogue. The data is refreshed by local authorities and is open to use under FSA terms.
Search /Establishments for venues with name 'The Ivy' in local authority 'Westminster' and return each match's hygiene rating.
Compliance Monitoring Across a Chain
Track ratings for every site in a multi-location food business by paging through /Establishments filtered by business name and local authority. Useful for operations teams who need a single dashboard of FHRS scores across their estate. Each record includes the rating value, rating date, and the inspecting authority.
List establishments with business name matching 'Pret A Manger' across all local authorities and return the count of sites at each rating value.
Reference Data Lookup
Use endpoints like /BusinessTypes, /Authorities, /Regions, /Countries, /Ratings, /SchemeTypes, and /ScoreDescriptors to populate dropdowns, validate user input, or enrich establishment records with human-readable labels. Each endpoint supports paged 'basic' and full variants, so you can choose between lightweight metadata and detailed records.
Call GET /BusinessTypes/basic and return the IDs and names of all FHRS business types.
AI Agent Lookup via Jentic
Agents use Jentic's intent search to find FHRS operations, load the schema for the establishment search endpoint, and run lookups without holding any credentials (the API is open). This is the recommended pattern for assistants that answer 'is this restaurant safe?' style questions in chat or voice channels.
Use Jentic to search 'look up a UK food hygiene rating', load the GET /Establishments schema, and return the latest rating for the restaurant name and postcode the user provided.
28 endpoints — jentic publishes the only available openapi specification for food hygiene rating scheme api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/Establishments
Search establishments by name, location, or business type
/Authorities
List local authorities that issue ratings
/BusinessTypes
List FHRS business types
/Regions
List UK regions
/Ratings
List rating values
/SchemeTypes
List rating scheme types (FHRS, FHIS)
/ScoreDescriptors
Read score descriptor text
/Establishments
Search establishments by name, location, or business type
/Authorities
List local authorities that issue ratings
/BusinessTypes
List FHRS business types
/Regions
List UK regions
/Ratings
List rating values
Three things that make agents converge on Jentic-routed access.
Credential isolation
The Food Hygiene Rating Scheme API is unauthenticated, so there is no secret to manage. Jentic still mediates the call for consistent observability, retries, and error handling alongside other tools the agent uses.
Intent-based discovery
Agents search by intent (e.g. 'look up a UK food hygiene rating') and Jentic returns the GET /Establishments operation with its query parameter schema, so the agent supplies business name and authority without browsing the FSA docs.
Time to first call
Direct FHRS integration: half a day for query parameter wiring, paging, and reference data joins. Through Jentic: minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Yelp Fusion API
Restaurant search and reviews to pair with FHRS hygiene ratings.
Use alongside FHRS when the agent needs both subjective customer reviews and objective hygiene ratings for a venue.
Bing Search API
Web and place search to resolve venue names before looking up FHRS ratings.
Use alongside FHRS when the agent needs to resolve a free-text venue name to address details before looking up its hygiene rating.
Companies House API
UK company registry data that pairs with FHRS for due-diligence on food businesses.
Use alongside FHRS when an agent needs both the food hygiene record and the company ownership and filing history of a UK food business.
Specific to using Food Hygiene Rating Scheme API API through Jentic.
Why is there no official OpenAPI spec for Food Hygiene Rating Scheme API?
The Food Standards Agency publishes documentation but not a maintained OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Food Hygiene Rating Scheme API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Food Hygiene Rating Scheme API use?
The FHRS API is open and does not require authentication. The OpenAPI spec lists no security schemes. Jentic still routes the call through its execution layer for observability, but no credential is needed.
Can I search establishments by postcode with the Food Hygiene Rating Scheme API?
Yes, GET /Establishments accepts filters including business name, local authority, and address fields, and the response contains each establishment's address and rating. Use the local authority and business type filters together for tighter location-based searches.
What are the rate limits for the Food Hygiene Rating Scheme API?
The OpenAPI spec does not declare explicit rate limits. The FSA asks consumers to be reasonable — page through results with the basic/{pageNumber}/{pageSize} variants rather than pulling the full dataset at once.
How do I look up a single restaurant's hygiene rating through Jentic?
Search Jentic for 'look up a UK food hygiene rating', load the GET /Establishments schema, and execute with the business name and local authority. The response includes the FHRS rating value and the rating date.
Does the Food Hygiene Rating Scheme API cover Scotland?
Yes, the /SchemeTypes endpoint distinguishes between FHRS (England, Wales, Northern Ireland) and FHIS (Scotland), and both are returned by /Establishments. Filter by scheme type if you only want one or the other.
/SchemeTypes
List rating scheme types (FHRS, FHIS)
/ScoreDescriptors
Read score descriptor text