# Afca — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search through thousands of published AFCA financial complaints decisions to find relevant cases by keyword, case number, or financial firm, and filter results by product type and complaint issues. Quickly locate precedents and outcomes to understand how AFCA has ruled on specific financial disputes.

**Category:** Government & Public Data | **Website:** [www.afca.org.au/](https://www.afca.org.au/) | **Docs:** [parse.bot/marketplace/04aa5603-5825-405d-928d-c51e61cd09fa/afca-org-au-api](https://parse.bot/marketplace/04aa5603-5825-405d-928d-c51e61cd09fa/afca-org-au-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-afca-org-au-api-04aa5603/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_decisions

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date_from` | string | No | Filter decisions resolved on or after this date (format: YYYY-MM-DD). |
| `date_to` | string | No | Filter decisions resolved on or before this date (format: YYYY-MM-DD). |
| `financial_firm` | string | No | Filter by financial firm name (e.g. 'AAI Limited', 'Youi Pty Ltd'). |
| `issue` | string | No | Filter by specific issue. |
| `issue_type` | string | No | Filter by issue type. |
| `product_category` | string | No | Filter by product category. |
| `product_line` | string | No | Filter by product line. |
| `product_name` | string | No | Filter by product name. |
| `query` | string | No | Keyword or case number to search for (e.g. 'insurance', '12-25-328044'). Matches against decision content and case metadata. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-afca-org-au-api-04aa5603/search_decisions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date_from":"<string>","date_to":"<string>","financial_firm":"<string>","issue":"<string>","issue_type":"<string>","product_category":"<string>","product_line":"<string>","product_name":"<string>","query":"<string>"}'
```
