Hoist AIAssets Sign in
HomeSandbox

Response shape preview.

A working preview of the API response shape against three fixture organisations. Same JSON your code will parse in production. This page renders canned fixtures client-side — the real backend signs and hashes records server-side. Sign up to run live searches against the AFSA register.

Last updated 2026-05-20 Live No rate limit on fixtures

This page shows the JSON response your tool will parse against three fixture organisations. The records below are canned fixtures, rendered client-side — useful for shaping your integration, not for testing hashes or verification. Hoist Assets is in its S1-gate validation sprint: real AFSA searches, signed Due Diligence Records, and paid plans ship at S2-gate alongside the partner-intermediary integration.

What the response looks like Roadmap (S2-gate)

At S2-gate every real search will return three things: the official AFSA certificate (as a URL), the Due Diligence Record (one-page signed PDF, hashed), and a record_id for retrieval. Roadmap shape (host placeholders shown as <api-host>api.assets.hoistai.com is not resolvable today):

{
  "record_id": "rec_01HX...",
  "search_type": "ppsr_search_organisation",
  "target": { "acn": "123 456 789", "name": "ACME Excavations Pty Ltd" },
  "certificate_url": "<api-host>/v1/certs/cert_01HX...pdf",
  "record_url": "<api-host>/v1/records/rec_01HX....pdf",
  "record_hash": "sha256:9f4e2c...",
  "audit_chain_id": "ac_2026-05-15-0042",
  "results": { "registrations": [ ... ] },
  "billed_at": "A$2.00 + A$0.50 workflow",
  "timestamp": "2026-05-15T03:42:11Z"
}

Call it from your tool

One transport is live today: the MCP server at mcp.assets.hoistai.com/mcp, backed by MockRegisterProvider against the same three fixtures shown above. The REST surface is roadmap.

MCP (Claude Desktop, Cursor, Cline, ChatGPT, Gemini) Live

After installing (see /docs/mcp), ask your agent: "Run a PPSR organisation search on ACN 123 456 789 in sandbox mode." The agent calls the tool against MockRegisterProvider and returns the same JSON shape as the preview above.

curl against the REST API Roadmap (S2-gate)

Not reachable today — api.assets.hoistai.com isn't shipped. At S2-gate the sandbox will be the same endpoint with "sandbox": true. No separate URL, no separate auth.

# Roadmap shape — not callable today
curl https://api.assets.hoistai.com/v1/ppsr/search \
  -H "Authorization: Bearer $HOIST_KEY" \
  -d '{"acn":"123 456 789","sandbox":true}'

Three fixtures, predictable results

  • ACME Excavations — three current registrations across two secured parties. Use this to see what a "loaded" PPSR record looks like.
  • Totem Logistics — one historic, two current registrations, one expiring next month. Use this for renewal/expiry handling.
  • Clean Slate — no registrations. Use this for "all clear" path testing.
What this isn't. Not a hash demo — the record_hash shown is a placeholder string. Live records will carry a real SHA-256 verifiable at /v1/records/{id}/verify once the REST API lands at S2-gate. Not a billing demo — nothing is charged here. Not real AFSA data — fixtures are made up and MockRegisterProvider returns them deterministically.

Next step.

Real AFSA searches and paid plans (from A$99/mo at S2-gate launch) aren't live yet — we're still in the S1-gate validation sprint. Pre-register interest or read the planned pricing.