Hoist AI Docs
Back to docs Get API Access
Business identity

ABN / GST lookup

Use Hoist Assets to verify an Australian Business Number, current entity details, and GST registration signals where supported source data is available.

iABN and GST checks support due diligence and workflow automation. They are source-backed data points, not tax, credit, or legal advice.

Endpoint

GEThttps://api.assets.hoistai.com/v1/abn/{abn}

What the lookup returns

Field groupTypical useExamples
IdentityConfirm the business identifier and display name.abn, entity name, entity type
RegistrationCheck whether the ABN is active or cancelled.ABN status, effective dates
GSTCheck whether GST registration is current for billing workflows.GST status, GST effective dates
Review signalsFlag cases where a human should verify before relying on the result.source timestamp, confidence, mismatch notes

Request pattern

Pass the ABN as digits. Strip spaces before sending, and keep the API key server-side.

curl - ABN lookup
curl https://api.assets.hoistai.com/v1/abn/11695718659 \
  -H "Authorization: Bearer $HOIST_ASSETS_API_KEY"

Response shape

The response is designed for agent-readable answers and audit-friendly UI copy. Show the source, timestamp, status, and any review flags alongside the answer.

200 OK
{
  "abn": "11695718659",
  "entity_name": "HoistAI Pty Ltd",
  "abn_status": "active",
  "gst_status": "registered",
  "source": "ABR",
  "source_observed_at": "2026-06-21T00:00:00Z"
}

When to use it