# Australian Business Register (ABR) Company Lookup

> Australian Business Register (ABR) Company Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-13).

Look up Australian company data by ABN from the Australian Business Register, returning entity name, status, type, GST registration, and address.

## Facts

- Endpoint: GET https://api.strale.io/x402/au-company-data
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-1d3d743f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G2xUjIUg22Hft7-MiSB9o

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability api-strale-io-1d3d743f
```

Example prompt: Can you look up the Australian company registered under ABN 51824753556 — I need their business name, whether they're active, their GST status, and registered address?

## When to prefer this

Use this endpoint when you need to verify or enrich Australian business data using an ABN, confirm GST registration, or validate a business's active status against the official Australian Business Register. Prefer this over generic business search APIs when you have a specific ABN and need authoritative government-sourced data.

## Known failure modes

- Invalid ABN format (not 11 digits) returns validation error
- ABN not found in ABR returns empty or not-found response
- Network or upstream ABR service unavailability causes timeout
- Malformed query parameter causes bad request error

## How this service works

Look up Australian company data from the Australian Business Register (ABR). Accepts an ABN (11 digits). Returns entity name, status, type, GST registration, and address details. Free government API — fast and reliable.

## Output

Returns the entity's registered name, current status (active/cancelled), entity type (e.g. company, sole trader), GST registration status, and registered address details sourced from the Australian Business Register.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "abn": "51824753556"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "abn"
     ],
     "properties": {
      "abn": {
       "type": "string",
       "description": "Australian Business Number (11 digits)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-1d3d743f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
