Skip to content
Hoist AI Assets Docs
Read docs Get API access

Quickstart

Add Australian register data to your app, script, or AI workflow. Start with ABN lookup, then use PPSR preview and search when the account has approved source access.

Use an OAuth bearer token for REST API and CLI calls. MCP hosts get a token through OAuth consent.

terminal
export HOIST_TOKEN=<oauth_access_token>
InterfaceBest fitStart here
REST APIProducts, backend jobs, workflow automationREST API
CLITerminal checks, CI, local agentsCLI
MCPAI hosts that need user-approved tool accessMCP
curl
curl https://api.assets.hoistai.com/v1/abn/11695718659 \
-H "Authorization: Bearer $HOIST_TOKEN"

Use ABN lookup when an agent needs to verify business identity or GST status before answering.

curl
curl https://api.assets.hoistai.com/v1/ppsr/preview \
-H "Authorization: Bearer $HOIST_TOKEN" \
-H "Content-Type: application/json" \
-d '{"subject_kind":"organisation","acn":"123456789"}'

Preview flows are designed for confirmation. Show the subject and cost back to the human before a paid dispatch.

Use the MCP endpoint in your AI host:

MCPhttps://mcp.assets.hoistai.com/mcp

Then approve the scopes in the browser window the host opens.

terminal
hoist health --base-url https://api.assets.hoistai.com
hoist abn lookup 11695718659 --json
hoist ppsr preview 123456789 --json

The CLI uses the same bearer token as the API with --token or HOIST_TOKEN.