Overview
The Gazette Data API provides access to official UK public record notices published in The London, Edinburgh, and Belfast Gazettes, including insolvency, company, and government notices. Authentication uses OAuth 2.0, so you will need to register for credentials before making requests. It is a specialized API useful for legal, financial, and compliance applications in the UK.
Beginner Tip
Start by registering for an account at thegazette.co.uk to obtain OAuth credentials. The API supports Linked Data formats like Turtle and JSON-LD in addition to standard JSON, which makes it useful for semantic web projects.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Gazette Data, UK",
"description": "UK official public record API",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
title Title of the official gazette notice notice-code Unique code identifying the type of notice (e.g., insolvency, company registration) publish-date Date the notice was officially published in ISO 8601 format gazette-url Direct URL to the full text of the notice on thegazette.co.uk edition Which Gazette edition published the notice: London, Edinburgh, or Belfast Implementation Example
const url = "https://www.thegazette.co.uk/data";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Open Government, Greece
The Open Government Greece API provides access to official Greek government datasets covering areas such as economy, environment, transportation, and public health.
UK Companies House
The UK Companies House API provides official data on companies registered in the United Kingdom, including officers, filings, and financials.
Bank Negara Malaysia Open Data
⭐ Beginner's PickBank Negara Malaysia Open Data provides free access to official financial data published by Malaysia's central bank, including exchange rates, interest rates, and key economic indicators.
BCLaws
BCLaws gives you free access to the full text of British Columbia's laws and regulations.
Brazil
⭐ Beginner's PickBrasilAPI is a free, community-driven API that centralizes public data about Brazil in one easy-to-use place.