# KYB Essentials AU — Australian Business Lookup

> KYB Essentials AU — Australian Business Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $1.62/call, status unknown (last checked 2026-09-13).

Looks up essential Know Your Business (KYB) data for an Australian entity using its ABN, returning verified company information from Australian business registries.

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/solutions/kyb-essentials-au
- Price: $1.62/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kyb-essentials-au-australian-business-lookup-dece5ef6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-WmoOFFSHvoVQTeaiBn3l

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 kyb-essentials-au-australian-business-lookup-dece5ef6 -d '<json body>'
```

Example prompt: Can you look up the business details for Australian company with ABN 51 824 753 556 and confirm whether it's an active registered entity?

## When to prefer this

Choose this endpoint when you need quick, verified KYB data on an Australian business entity using an ABN, particularly for vendor onboarding, invoice validation, or compliance due diligence workflows in Australia. It is purpose-built for the Australian Business Register and returns an auditable, cryptographically chained record suitable for regulated workflows. Prefer it over generic web search or manual ASIC lookups when you need structured, machine-readable output with an audit trail.

## Known failure modes

- Invalid ABN format (not 11 digits) — returns validation error
- ABN not found in registry — returns not-found or empty result
- ABN cancelled or deregistered — returns status indicating inactive entity
- Upstream registry unavailable — may return timeout or service error
- Malformed request body — returns 400-level error

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns structured KYB data for the Australian business associated with the provided ABN, including entity name, ABN status (active/cancelled), entity type, GST registration status, principal business address, and registration dates. Every response also includes an audit record with a cryptographic chain hash for compliance traceability.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "abn"
     ],
     "properties": {
      "abn": {
       "type": "string",
       "description": "Australian Business Number (11 digits)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kyb-essentials-au-australian-business-lookup-dece5ef6/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)
