# UK Gazette Insolvency Notices Lookup

> UK Gazette Insolvency Notices Lookup is a paid API for AI agents from api.trustedinformation.site, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieves official UK Gazette notices (including insolvency/winding-up) for a given company name or number

## Facts

- Endpoint: GET https://api.trustedinformation.site/api/uk-business/gazette
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/uk-gazette-insolvency-notices-lookup-e9c8cfba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FnhLriIrWEZxEx9ERg5tQ

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 uk-gazette-insolvency-notices-lookup-e9c8cfba
```

Example prompt: Can you check The Gazette for any insolvency or winding-up notices for Carillion PLC?

## When to prefer this

Use this endpoint when you need official, government-sourced UK insolvency and legal notice data from The Gazette without requiring API key signup. It is ideal for due diligence, credit risk checks, and compliance workflows where verified, citable sources are required. Prefer this over Companies House-only lookups when you specifically need Gazette notice history including winding-up resolutions, liquidation appointments, and creditor notices.

## Known failure modes

- Company not found in Gazette returns totalNotices: 0 and empty notices array
- Misspelled company name may return unrelated or zero results
- Payment failure via x402 protocol results in 402 response before data is returned
- Rate limits or upstream Gazette unavailability may cause timeouts or 5xx errors
- Company numbers vs names may produce different result sets — ambiguity in query

## How this service works

Pay-per-call UK company, property and crypto market data for AI agents via x402. Official sources, no signup, no API keys, failed calls never charged.

## Output

Returns a JSON object containing the original query string, an array of Gazette notice objects (each with notice type, company name, publication date, and a direct link to the official Gazette entry), the total number of notices found, and a boolean flag indicating whether any insolvency-related notices are present.

## 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",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Company name or number"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "query",
      "totalNotices",
      "hasInsolvencyNotices",
      "notices"
     ],
     "properties": {
      "query": {
       "type": "string"
      },
      "notices": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "link": {
          "type": "string"
         },
         "type": {
          "type": "string"
         },
         "company": {
          "type": "string"
         },
         "published": {
          "type": "string"
         }
        }
       }
      },
      "totalNotices": {
       "type": "number"
      },
      "hasInsolvencyNotices": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query": "carillion",
  "notices": [
   {
    "link": "https://www.thegazette.co.uk/id/notice/L-58635-471825",
    "type": "Resolutions for Winding-up",
    "company": "CARILLION PLC",
    "published": "2018-03-10T00:00:00",
    "noticeCode": "2431"
   }
  ],
  "totalNotices": 196,
  "hasInsolvencyNotices": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uk-gazette-insolvency-notices-lookup-e9c8cfba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.trustedinformation.site](https://www.zero.xyz/host/api.trustedinformation.site/llms.txt)
