# Law Institute of Victoria — 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.

> Find and connect with law firms across Victoria by searching the LIV directory to access their contact details, practice areas, languages spoken, and websites. Discover qualified lawyers by browsing through available areas of law or searching for specific firms that match your legal needs.

**Category:** Business Directories | **Website:** [www.liv.asn.au/web/for_the_public/find_a_lawyer_referral_service/web/content/for_the_public/referral/referral_search.aspx](https://www.liv.asn.au/web/for_the_public/find_a_lawyer_referral_service/web/content/for_the_public/referral/referral_search.aspx) | **Docs:** [parse.bot/marketplace/0d8962b4-99c4-4f91-a5bc-e46ca65a4e03/liv-asn-au-api](https://parse.bot/marketplace/0d8962b4-99c4-4f91-a5bc-e46ca65a4e03/liv-asn-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-liv-asn-au-api-0d8962b4/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_areas_of_law

List all available areas of law categories and sub-categories from the LIV referral service. Each entry has a two-letter category_code, a human-readable category_name, and a sub_category_name. Use the category_code values as the area_of_law filter parameter in search_lawyers.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-liv-asn-au-api-0d8962b4/list_areas_of_law \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_lawyers

Search the LIV lawyer referral directory. Supports filtering by postcode, area of law category code, and firm name. Returns law firm details including contact information, practice areas, languages spoken, and accredited specialisations. Results are randomised by the upstream service. All filter parameters are optional; omitting all returns the full directory (capped by limit).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `area_of_law` | string | No | Area of law category code to filter by (e.g. 'CR' for Criminal Law, 'FA' for Family Law, 'PR' for Property Law). Use the list_areas_of_law endpoint to get available codes. When omitted, all areas are returned. |
| `firm_name` | string | No | Firm name or partial name to search for (e.g. 'Aitken'). Case-insensitive partial match. When omitted, no firm name filter is applied. |
| `limit` | integer | No | Maximum number of results to return. Must be between 1 and 500. |
| `postcode` | string | No | Australian postcode(s) to filter by. Supports comma-separated list for multiple postcodes (e.g. '3000' or '3000,3001,3002'). When omitted, no location filter is applied. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-liv-asn-au-api-0d8962b4/search_lawyers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"area_of_law":"<string>","firm_name":"<string>","limit":"<integer>","postcode":"<string>"}'
```
