Discover/Org API
live

Org APIafca.org.au

Search thousands of AFCA published decisions by keyword, case number, financial firm, product, and date. Structured JSON responses via a single endpoint.

This API takes change requests — .
Endpoint health
monitored
search_decisions
0/1 passing latest checkself-healing
Endpoints
1
Updated
3h ago

What is the Org API?

The AFCA Decisions API exposes one endpoint — search_decisions — that returns structured data from the Australian Financial Complaints Authority's published case library, covering fields like case_number, financial_firm, resolution_date, and knowledge_article_id. You can query by keyword, exact case number, financial firm name, product line, issue type, or date range, with total_count indicating how many decisions match your filters. Broad searches can return thousands of records in a single response.

This call costs2 credits / call— charged only on success
Try it
Filter by specific issue.
Keyword or case number to search for (e.g. 'insurance', '12-25-328044'). Matches against decision content and case metadata.
Filter decisions resolved on or before this date (format: YYYY-MM-DD).
Filter decisions resolved on or after this date (format: YYYY-MM-DD).
Filter by issue type.
Filter by product line.
Filter by product name.
Filter by financial firm name (e.g. 'AAI Limited', 'Youi Pty Ltd').
Filter by product category.
api.parse.bot/scraper/dc78cb9c-e3c1-4e7e-823a-53a22b25ee2e/<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/dc78cb9c-e3c1-4e7e-823a-53a22b25ee2e/search_decisions?query=12-25-328044' \
  -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 afca-org-au-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: AFCA Decisions SDK — bounded, re-runnable; every call capped."""
from parse_apis.afca_org_au_api import Afca, SearchInputRequired

client = Afca()

# Search by case number — exact match
for decision in client.decisions.search(query="12-25-328044", limit=3):
    print(decision.case_number, decision.financial_firm, decision.resolution_date)

# Take the first result for inspection
item = client.decisions.search(query="12-25-328044", limit=1).first()

# Typed error: missing required search parameters
try:
    result = client.decisions.search(limit=1).first()
    if result:
        print(result.case_number, result.financial_firm)
except SearchInputRequired as e:
    print("input required:", e)

print("exercised: decisions.search")
All endpoints · 1 totalmissing one? ·

Search AFCA published decisions by keyword, case number, financial firm, product filters, issue filters, and date range. Returns all matching decisions in a single response. Searches by case number (e.g. '12-25-328044') return exact matches. Broad keyword searches may return thousands of results. At least one search parameter is required.

Input
ParamTypeDescription
issuestringFilter by specific issue.
querystringKeyword or case number to search for (e.g. 'insurance', '12-25-328044'). Matches against decision content and case metadata.
date_tostringFilter decisions resolved on or before this date (format: YYYY-MM-DD).
date_fromstringFilter decisions resolved on or after this date (format: YYYY-MM-DD).
issue_typestringFilter by issue type.
product_linestringFilter by product line.
product_namestringFilter by product name.
financial_firmstringFilter by financial firm name (e.g. 'AAI Limited', 'Youi Pty Ltd').
product_categorystringFilter by product category.
Response
{
  "type": "object",
  "fields": {
    "results": "array of decision objects with case_number, financial_firm, resolution_date, and knowledge_article_id",
    "total_count": "integer — total number of matching decisions"
  },
  "sample": {
    "data": {
      "results": [
        {
          "case_number": "12-25-328044",
          "financial_firm": "Youi Pty Ltd",
          "resolution_date": "6/12/2026 1:58:48 AM",
          "knowledge_article_id": "df2310b1-737e-f111-ab0e-000d3ad0b933"
        }
      ],
      "total_count": 1
    },
    "status": "success"
  }
}

About the Org API

What the API Returns

The search_decisions endpoint returns an array of decision objects from AFCA's published decisions database. Each object in the results array includes case_number (e.g. 12-25-328044), financial_firm, resolution_date, and knowledge_article_id. The total_count field tells you how many decisions matched your query without needing to paginate — all matching results are returned in one response.

Filtering and Search Options

The query parameter accepts free-text keywords or an exact case number. Keyword searches match against decision content and metadata; case number searches (e.g. '12-25-328044') return a precise single match. You can narrow results with financial_firm (e.g. 'AAI Limited', 'Youi Pty Ltd'), product_line, product_name, issue_type, and issue. Date range filtering is available via date_from and date_to in YYYY-MM-DD format, both bound to the resolution_date field.

Coverage and Volume

AFCA publishes decisions from financial firms operating in Australia across banking, insurance, investments, superannuation, and credit. Broad queries without filters can match thousands of decisions. For targeted research — say, all motor vehicle insurance decisions resolved against a specific insurer in a given year — combining financial_firm, product_name, and date range parameters keeps results relevant and manageable.

Reliability & maintenance

The Org API is a managed, monitored endpoint for afca.org.au — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when afca.org.au 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 afca.org.au 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.

Latest check
0/1 endpoint 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
  • Aggregate decisions against a specific insurer by combining financial_firm and product_line filters to track complaint outcomes over time
  • Retrieve an exact AFCA decision by case_number for citation in legal or compliance documents
  • Filter decisions by issue_type and date_from/date_to to identify trends in a particular complaint category
  • Cross-reference financial_firm decisions with internal risk data to assess counterparty complaint history
  • Build a legal research tool that lets users search AFCA precedents by product and issue combination
  • Monitor resolution_date patterns for a firm to track whether complaint volumes are rising in recent periods
  • Extract knowledge_article_id values to link decision summaries into a compliance knowledge base
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 AFCA have an official developer API?+
AFCA does not publish an official developer API. Their published decisions are available through their website at afca.org.au, but there is no documented public API for programmatic access to decisions data.
What does a `search_decisions` response include for each case?+
Each object in the results array contains case_number, financial_firm, resolution_date, and knowledge_article_id. The total_count field at the top level tells you how many decisions matched the query in total.
Does the API return the full decision text or outcome details?+
Not currently. The response fields cover case identifiers, firm name, resolution date, and knowledge article ID — not the full decision narrative, ruling summary, or awarded amounts. You can fork this API on Parse and revise it to add an endpoint that retrieves full decision content by knowledge_article_id.
Are there quirks to be aware of with broad keyword searches?+
Yes. Broad query values without additional filters can match thousands of decisions, all returned in a single response. If response size is a concern, combine the query parameter with financial_firm, product_name, issue_type, or date range filters to reduce the result set.
Can I filter decisions by the outcome or ruling direction — for example, decisions in favour of the complainant?+
Not currently. The available filters are keyword/case number, financial firm, product line, product name, issue type, issue, and date range. Outcome direction is not an exposed filter field. You can fork this API on Parse and revise it to add outcome-based filtering if that field is available from the source.
Page content last updated . Spec covers 1 endpoint from afca.org.au.
Related APIs in Government PublicSee all →
pensions-ombudsman.org.uk API
Search through the UK Pensions Ombudsman's past decisions and guidance to find relevant information about pension disputes, complaints procedures, and FAQs. Access news updates, publications, and detailed information about filing complaints or understanding your rights as a pension scheme member.
austlii.edu.au API
Search and access Australian legal cases from AustLII's comprehensive database, browsing by year and downloading decisions in multiple formats including RTF, PDF, and print-friendly versions. Discover available case databases and retrieve specific court rulings with prioritized download options to suit your preferred format.
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.
finra.org API
Search FINRA disciplinary actions and BrokerCheck records to verify the background, credentials, and regulatory history of broker firms and individual financial professionals. Look up broker information alphabetically or by specific criteria to research potential advisors and ensure they have a clean compliance record.
sec.gov API
Search for publicly traded companies and instantly access their SEC filings with details like filing type, date, description, and accession numbers. Find the regulatory documents you need to research company financial information and compliance records.
classaction.org API
Search and retrieve information about class action settlements, lawsuit investigations, and data breaches all in one place. Find relevant cases, get detailed settlement information, and stay updated with the latest news articles related to consumer lawsuits and legal actions.
indocourtatlas.com API
Search and browse judicial records, legal decisions, and court cases from courts throughout Indonesia to find relevant case information and rulings. Access comprehensive Indonesian court data through simple search and browsing capabilities to research legal precedents and case outcomes.