Add ANZ business verification to your AI assistant or application.
Add the HopGraph MCP server to Claude Desktop, ChatGPT, or any MCP-compatible AI agent. Your assistant can then verify any Australian business as part of your existing workflow.
If you don’t have one yet, create a free API key.
Open your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd the following (replace YOUR_API_KEY with your actual key):
{
"mcpServers": {
"hopgraph": {
"command": "npx",
"args": [
"mcp-remote",
"https://hopgraph.com/mcp/",
"--header",
"Authorization:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "Bearer YOUR_API_KEY"
}
}
}
}
After saving the config, restart the app. You’ll see the HopGraph tools available in your conversation.
Type this into Claude Desktop:
Verify business ABN 35002976294
You should see a full verification with company status, licence details, and adviser screening findings — including cross-referenced alerts that a standard registry check would miss. If you see that, you’re good to go.
Once connected, your AI assistant can use these tools:
Just ask your assistant naturally: “Verify Capstone Financial Planning” or “Check ABN 24093733969”.
Call the API directly from your application. Same cross-referencing, same compliance records.
Include your API key as a Bearer token in the Authorization header:
Authorization: Bearer hg_your_api_key_here
GET /v1/au/entity/{abn}
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://hopgraph.com/v1/au/entity/24093733969
GET /v1/au/entity/{acn}
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://hopgraph.com/v1/au/entity/093733969
GET /v1/entity/{identifier}
# Works with ABN, ACN, or NZBN
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://hopgraph.com/v1/entity/24093733969
GET /v1/search?q={query}&limit={n}
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://hopgraph.com/v1/search?q=capstone+financial&limit=5"
GET /v1/verification/{uid}
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://hopgraph.com/v1/verification/abc12345-6789-...
All responses follow the same structure:
{
"status": "success",
"data": { ... },
"meta": {
"request_id": "...",
"timestamp": "2026-03-05T10:30:00Z"
}
}
The data object contains the full entity profile including company details, regulatory flags, licences, adviser screening findings, and the verification UID for audit retrieval.
| Tier | Verifications | Rate limit |
|---|---|---|
| Free | 5/month | 10 req/min |
| Professional | Unlimited | 60 req/min |
| Business | Unlimited | 120 req/min |
When you exceed your monthly limit, the API returns 403 with a message indicating your quota has been reached.