Discover/Gov API
live

Gov APIinsolvencydirect.bis.gov.uk

Search and retrieve UK insolvency records — bankruptcies, IVAs, DROs, and restrictions — from the Individual Insolvency Register via a simple REST API.

Endpoint health
verified 5d ago
search_individual_insolvency_register
get_insolvency_record_detail
get_individual_insolvency_register_info
3/3 passing latest checkself-healing
Endpoints
3
Updated
21d ago

What is the Gov API?

This API provides access to the UK Individual Insolvency Register (IIR) across 3 endpoints, covering bankruptcies, Individual Voluntary Arrangements (IVAs), Debt Relief Orders (DROs), and bankruptcy restrictions for individuals and sole traders in England and Wales. The search_individual_insolvency_register endpoint accepts a surname or trading name and returns paginated record summaries including name, birth date, postcode, and a detail URL for full case lookup.

Try it
Page number for pagination (1-based).
Search term — typically a surname or trading name.
api.parse.bot/scraper/72019f0e-1631-4ca0-a134-ed349bd0c668/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/72019f0e-1631-4ca0-a134-ed349bd0c668/search_individual_insolvency_register?page=1&query=Smith' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace insolvencydirect-bis-gov-uk-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.uk_insolvency_records_api_eiir import InsolvencyRegister, RecordSummary, Record, RegisterInfo

client = InsolvencyRegister()

# Get register metadata
info = client.registerinfos.get()
print(info.title, info.coverage, info.retention_period)

# Search for insolvency records by surname
for summary in client.recordsummaries.search(query="Smith"):
    print(summary.name, summary.birth_date, summary.postcode)

    # Drill into full record details
    record = summary.details()
    print(record.surname, record.forenames, record.type, record.court, record.status)
    break
All endpoints · 3 totalmissing one? ·

Full-text search over the Individual Insolvency Register (IIR) by surname or trading name. Returns paginated results (10 per page) including name, date of birth, trading details, postcode, and a detail_url for drilling into full case information. Postcode searches are accepted but may yield zero results.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
queryrequiredstringSearch term — typically a surname or trading name.
Response
{
  "type": "object",
  "fields": {
    "page": "integer — current page number",
    "query": "string — the search term used",
    "records": "array of record summaries with name, detail_url, birth_date, trading_details, postcode",
    "total_pages": "integer — total pages available",
    "total_records": "integer — total matching records"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "Smith",
      "records": [
        {
          "name": "Adam Smith Ferrier",
          "postcode": "BN1 6EE",
          "birth_date": "24/10/1972",
          "detail_url": "https://www.insolvencydirect.bis.gov.uk/eiir/case-details/1/false/704773725/711859978/U21pdGg",
          "trading_details": "Adam Smith Ferrier"
        }
      ],
      "total_pages": 630,
      "total_records": 6291
    },
    "status": "success"
  }
}

About the Gov API

What the API covers

The Individual Insolvency Register (IIR) is the public register of insolvency cases for individuals and sole traders in England and Wales, maintained by the Insolvency Service. This API exposes its contents across three endpoints: a register metadata endpoint, a search endpoint, and a record detail endpoint. The get_individual_insolvency_register_info endpoint returns the register's title, geographic coverage, description of included record types, and retention period — useful for displaying context to end users or validating what the register covers before querying.

Searching for records

The search_individual_insolvency_register endpoint takes a required query parameter (typically a surname or trading name, e.g. 'Smith') and an optional page integer for paginated results. The response includes total_records, total_pages, and a records array. Each record in that array carries name, birth_date, postcode, trading_details, and a detail_url that links directly to the full case. Postcode searches are accepted but may return zero results if no IIR records match that postcode.

Retrieving full case details

Passing a detail_url from the search results into get_insolvency_record_detail returns the full case record. Fields include type (e.g. Bankruptcy, IVA, DRO), court, number, status, case_name, forenames, surname, date_of_birth (DD/MM/YYYY), and order_date. This is enough to confirm case identity, insolvency type, issuing court, and current status for a named individual.

Coverage and data scope

Coverage is limited to England and Wales. Scotland and Northern Ireland operate separate registers not included here. Records appear on the register from the date of the insolvency order and are retained according to the retention policy returned by get_individual_insolvency_register_info. Only current and recently discharged cases within that retention window are visible.

Reliability & maintenanceVerified

The Gov API is a managed, monitored endpoint for insolvencydirect.bis.gov.uk — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when insolvencydirect.bis.gov.uk changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official insolvencydirect.bis.gov.uk API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Screening individuals during credit or tenant onboarding by querying their surname against the IIR
  • Verifying sole trader insolvency status using trading name as the search query
  • Confirming case type (Bankruptcy vs IVA vs DRO) and court of issue for a known case number
  • Checking current case status before extending credit or entering a contract with an individual
  • Building compliance dashboards that surface active or recent insolvency flags on named persons
  • Displaying register coverage and retention metadata to end users within a financial due-diligence tool
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does the Insolvency Service provide an official developer API for the IIR?+
The Insolvency Service does not publish a documented public developer API for the Individual Insolvency Register. The register is accessible via the web at insolvencydirect.bis.gov.uk.
What does get_insolvency_record_detail return beyond what the search results include?+
The search endpoint returns name, birth_date, postcode, and trading_details as a summary. The detail endpoint adds court name, case number, insolvency type (e.g. Bankruptcy, IVA, DRO), order_date, and current case status — fields not present in the search summary.
Does the API cover insolvency records for Scotland or Northern Ireland?+
No. The IIR covers England and Wales only. Scotland's register (the Register of Insolvencies) and Northern Ireland's records are held by separate bodies and are not included. You can fork this API on Parse and revise it to add an endpoint targeting those separate registers.
Can I search by postcode instead of surname?+
The search_individual_insolvency_register endpoint accepts a postcode as the query value, but the register is structured primarily around surnames and trading names. Postcode queries frequently return zero results because the IIR does not index records by postcode in the same way. Surname or trading name searches are more reliable.
Does the API expose corporate or company insolvency records?+
No. The IIR covers individuals and sole traders only. Company insolvency records are held on the Companies House register and are not part of the IIR data this API returns. You can fork this API on Parse and revise it to add an endpoint targeting the Companies House insolvency data.
Page content last updated . Spec covers 3 endpoints from insolvencydirect.bis.gov.uk.
Related APIs in Government PublicSee all →
find-and-update.company-information.service.gov.uk API
Search and access detailed information about UK companies registered at Companies House, including company profiles, filing histories, officers, and financial charges. Filter companies by name, status, type, SIC code, and more.
companieshouse.gov.uk API
Search for UK companies and officers, then access detailed information including company profiles, filing history, charges, and officers with significant control. Get comprehensive corporate records and appointment details all in one place.
sra.org.uk API
Search for UK solicitors by name and retrieve their detailed registration information from the SRA register, including their SRA number and professional credentials. Browse through the complete solicitor directory to verify qualifications and find regulated legal professionals in the United Kingdom.
justice.cz API
Look up official information about Czech companies including their legal status, representatives, and shareholders directly from the government's ARES registry and Insolvency Register. Search for companies by name or ID number to instantly access verified business details and check if they're involved in insolvency proceedings.
discovery.nationalarchives.gov.uk API
Search and browse The National Archives Discovery catalogue to find historical records, discover their creators, and explore archived collections. Get detailed information about specific records and navigate through the archive's organizational structure to uncover primary sources and historical documents.
service.asic.gov.au API
Search and retrieve comprehensive information about Australian financial professionals and entities, including AFS and credit licensees, their representatives, liquidators, auditors, and managed investment schemes. Verify credentials, check regulatory status, and access detailed profiles of financial service providers registered with ASIC.
bailii.org API
Search and retrieve court judgments and case law from British and Irish courts across multiple jurisdictions, with filtering by date range and location. Access complete case details including full judgment text and metadata to research legal precedents and decisions.
registroimprese.it API
Search Italian companies by name or ID to instantly access official business registration details including company status, founding information, and corporate structure from the authoritative Italian Business Registry. Get comprehensive company profiles with verified legal and operational data all in one place.