Discover/Org API
live

Org APIpensions-ombudsman.org.uk

Access UK Pensions Ombudsman decisions, news, FAQs, and publications via API. Search by keyword, outcome, topic, or date. 10 endpoints, structured JSON.

Endpoint health
verified 10h ago
get_news_listing
get_faqs
search_site
search_decisions
get_publications
9/10 passing latest checkself-healing
Endpoints
10
Updated
26d ago

What is the Org API?

The Pensions Ombudsman API provides structured access to the UK Pensions Ombudsman website across 10 endpoints, covering decisions, news, FAQs, and publications. Use search_decisions to query the full decisions database by keyword, outcome, complaint topic, or date order, and retrieve per-case details including complainant, respondent, determination text, and PDF link via get_decision_detail. Static informational pages — complaints guidance, about us — are also accessible as structured text.

Try it
Search keyword to filter decisions.
Page number (0-based).
Sort order for results.
Complaint topic filter as comma-separated numeric IDs from the site's taxonomy.
Outcome filter as comma-separated numeric IDs from the site's taxonomy.
Decision type filter as comma-separated numeric IDs from the site's taxonomy.
api.parse.bot/scraper/ea1bf717-2a7b-480b-9319-2f1016cf587e/<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/ea1bf717-2a7b-480b-9319-2f1016cf587e/search_decisions?keys=ill+health&page=0&sort=field_decision_date_value_DESC' \
  -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 pensions-ombudsman-org-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.

"""Walkthrough: Pensions Ombudsman SDK — search decisions, read news, browse FAQs."""
from parse_apis.pensions_ombudsman_api import PensionsOmbudsman, Sort, ResourceNotFound

client = PensionsOmbudsman()

# Search recent ill-health decisions, sorted newest first.
for decision in client.decisionsummaries.search(keys="ill health", sort=Sort.DATE_DESC, limit=3):
    print(decision.title, decision.outcome, decision.date)

# Drill into the first decision for full determination text.
first = client.decisionsummaries.search(keys="pension", limit=1).first()
if first:
    detail = first.details()
    print(detail.title, detail.type, detail.determination_text[:120])

# Browse latest news articles and read one in full.
article_summary = client.newsarticlesummaries.list(limit=1).first()
if article_summary:
    full_article = article_summary.details()
    print(full_article.title, full_article.date, full_article.body[:100])

# Search FAQs about complaints.
for faq in client.faqs.search(keys="complaint", limit=3):
    print(faq.question, faq.answer[:80])

# Typed error handling on a decision detail fetch.
try:
    bad_summary = client.decisionsummaries.search(keys="nonexistent case xyz", limit=1).first()
    if bad_summary:
        bad_summary.details()
except ResourceNotFound as exc:
    print(f"Decision not found: {exc.url}")

# Static page: complaint guidance.
info = client.pages.get_complaint_info()
print(info.title, info.url)

print("exercised: decisionsummaries.search / details / newsarticlesummaries.list / details / faqs.search / pages.get_complaint_info")
All endpoints · 10 totalmissing one? ·

Search and list previous decisions from the Pensions Ombudsman. Returns paginated results with decision metadata including title, URL, complainant, respondent, outcome, complaint topic, reference, and date. Supports keyword search, sorting, and filtering by outcome, topic, or type. Paginates via a 0-based page counter; each page returns up to 12 decisions ordered by decision date.

Input
ParamTypeDescription
keysstringSearch keyword to filter decisions.
pageintegerPage number (0-based).
sortstringSort order for results.
topicstringComplaint topic filter as comma-separated numeric IDs from the site's taxonomy.
outcomestringOutcome filter as comma-separated numeric IDs from the site's taxonomy.
type_idstringDecision type filter as comma-separated numeric IDs from the site's taxonomy.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "decisions": "array of decision summary objects with title, url, complainant, respondent, outcome, complaint_topic, ref, and date"
  }
}

About the Org API

Decisions Database

The search_decisions endpoint accepts keyword search via keys, paginated results via zero-based page, and sort via sort (ascending or descending by decision date). Taxonomy-based filters topic, outcome, and type_id accept comma-separated numeric IDs drawn from the site's own taxonomy. Each result in the decisions array includes title, url, complainant, respondent, outcome, complaint_topic, ref, and date. Pass any returned url to get_decision_detail for the full record, which adds determination_text and pdf_url when a PDF is available.

News, FAQs, and Publications

get_news_listing returns paginated news articles and press releases with title, url, date, and summary. Individual articles fetched via get_news_article return the full body text alongside date and title. get_faqs supports an optional keys keyword filter and returns question/answer pairs. get_publications lists governance documents, factsheets, expenditure reports, and leaflets, each with title, url, date, type, and summary.

Site-Wide Search and Static Pages

search_site runs a global keyword search across all site content and returns title, url, and snippet per result — useful for surfacing relevant decisions or guidance without knowing which section to search. Three static-page endpoints — get_making_a_complaint_info, get_being_complained_about_info, and get_about_us — each return title, url, and full body text, making it straightforward to pull procedural guidance into external tools without maintaining separate content copies.

Taxonomy Filters

The topic, outcome, and type_id parameters in search_decisions use numeric IDs from the Pensions Ombudsman's internal taxonomy. These IDs are not fully enumerated in the API spec, so developers typically run initial searches without filters to discover representative outcome and topic strings from results, then use search_site or inspect listing data to map strings to usable IDs.

Reliability & maintenanceVerified

The Org API is a managed, monitored endpoint for pensions-ombudsman.org.uk — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when pensions-ombudsman.org.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 pensions-ombudsman.org.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
10h ago
Latest check
9/10 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
  • Building a searchable archive of UK pension dispute decisions filtered by complaint topic or outcome for legal research
  • Monitoring new Pensions Ombudsman decisions by polling search_decisions sorted by date descending
  • Extracting full determination text via get_decision_detail for NLP classification of decision reasoning and outcomes
  • Aggregating Pensions Ombudsman news and press releases into a compliance alert feed using get_news_listing
  • Embedding complaints procedure guidance from get_making_a_complaint_info into a pension member support portal
  • Analysing publication metadata from get_publications to track governance document releases over time
  • Surfacing relevant FAQ answers from get_faqs in a pension scheme member chatbot or helpdesk 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 Pensions Ombudsman provide an official developer API?+
No. The Pensions Ombudsman (pensions-ombudsman.org.uk) does not publish an official developer API or data feed. This Parse API is the structured programmatic interface to that content.
How do the outcome and topic filters work in `search_decisions`?+
The outcome, topic, and type_id parameters accept comma-separated numeric IDs from the Pensions Ombudsman's taxonomy. The full list of valid IDs is not pre-enumerated in the API. You can discover applicable values by inspecting outcome and complaint_topic strings returned in unfiltered search_decisions results, then map those strings to IDs through trial or by cross-referencing the site's filter UI.
Is the full determination text available for every decision?+
Not always. get_decision_detail returns determination_text and pdf_url where the decision page includes them. Some older or early-stage decisions may have limited text or no associated PDF. The pdf_url field will be absent or empty in those cases.
Can I filter decisions by the pension scheme name or pension provider?+
There is no dedicated scheme-name filter parameter. Keyword search via the keys parameter in search_decisions can surface decisions where the scheme or provider name appears in the title or metadata. For structured filtering by respondent, you would need to retrieve and process result sets programmatically. You can fork this API on Parse and revise it to add a dedicated respondent-filter endpoint if that field is exposed in an accessible form.
Does the API cover Pensions Ombudsman Early Resolution Service (ERS) cases separately?+
ERS cases are not surfaced as a distinct dataset. The type_id filter in search_decisions may allow filtering by decision type if ERS decisions are assigned a distinct taxonomy ID, but this is not enumerated in the current spec. You can fork this API on Parse and revise it to add explicit ERS filtering once the relevant taxonomy IDs are mapped.
Page content last updated . Spec covers 10 endpoints from pensions-ombudsman.org.uk.
Related APIs in Government PublicSee all →
planningportal.co.uk API
Find your Local Planning Authority by postcode or location and access their planning decision registers, along with comprehensive UK planning and building guidance all in one place. Quickly identify the right LPA for your planning needs and get direct links to their official planning information.
tenders.gov.uk API
Search and access UK government public procurement notices, tenders, and contract opportunities in real-time, with the ability to retrieve detailed notice information and browse standardized classification codes. Get comprehensive procurement data in structured formats to analyze tender patterns and find relevant contracting opportunities.
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.
occrp.org API
Search and discover investigative journalism from OCCRP.org, including articles, investigations, and projects organized by section and region. Get the latest news updates and detailed information about specific investigations to stay informed on organized crime and corruption reporting.
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.
royalsocietypublishing.org API
Search and browse scientific articles, journals, and issues from the Royal Society Publishing platform, including filtering by subject, year, and latest publications. Access detailed information about specific articles, journals, and current issues to stay updated on peer-reviewed research.
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.
examplecourt.gov API
Search and retrieve court judgments, case details, and legal metadata from a national court reporting portal, with support for advanced filtering by court and case category. Access complete case information including full text and browse paginated results to find relevant legal precedents.