// Agentic Protocol

Integrations

Connect AI agents, automation platforms, and enterprise tools to Osapher identity endpoints.

Overview

Osapher exposes a public OpenAPI 3.0 specification and MCP server that connect directly to AI agents, automation platforms, and enterprise tools. No custom connectors required — paste the spec URL or SSE endpoint and the integration is ready.

The OpenAPI spec covers business identity verification, entity trust scoring, and monitoring status across AU and NZ registries.

OpenAPI spec URL: https://app.osapher.com/api/v1/openapi.json
MCP server: https://mcp.osapher.com/sse

ChatGPT Custom Actions

Import the Osapher OpenAPI spec directly into a Custom GPT to give ChatGPT the ability to verify AU/NZ business identities mid-conversation.

  1. Open ChatGPT and go to Explore GPTs → Create
  2. Select Configure → Add Actions
  3. Click Import from URL and paste the spec URL:
OpenAPI spec URL
https://app.osapher.com/api/v1/openapi.json

ChatGPT will automatically parse all available endpoints and make them callable from natural language prompts. No authentication required — all endpoints are public.

example prompt
Verify the business with ABN 11 111 111 111 and tell me their identity trust score.

Claude MCP

The Osapher MCP server connects natively to Claude Desktop and any MCP-compatible agent runtime. Add it to your config file:

claude_desktop_config.json
{
  "mcpServers": {
    "osapher": {
      "url": "https://mcp.osapher.com/sse",
      "transport": "sse"
    }
  }
}

Once connected, Claude can call verify_business, get_entity_score, and check_monitoring_status natively. See the MCP Server docs for full tool reference.

Zapier

Use the Osapher M2M API in Zapier workflows via the Webhooks by Zapier action. Trigger a business identity lookup whenever a new lead, invoice, or record arrives.

  1. Add a Webhooks by Zapier action step
  2. Set method to GET
  3. Set URL to the verify endpoint with the ABN from a previous step:
Zapier webhook URL
https://app.osapher.com/api/v1/verify/{{abn}}

The response includes the identity trust score, certification status, and schema health. Map these fields to your CRM, spreadsheet, or notification step.

Make.com

Connect Osapher to Make.com scenarios using the HTTP module.

  1. Add an HTTP → Make a request module
  2. Set method to GET
  3. Set URL:
Make.com request URL
https://app.osapher.com/api/v1/verify/{{abn}}

Parse the JSON response to extract its_score, certified, and schema_live fields for use in downstream modules.

Vertex AI

Import the Osapher OpenAPI spec into a Vertex AI agent as an extension.

  1. In Google Cloud Console, open Vertex AI → Agent Builder
  2. Create or open an agent and go to Tools → Add tool
  3. Select OpenAPI and paste the spec URL:
spec URL
https://app.osapher.com/api/v1/openapi.json

The agent will automatically surface business identity verification as a callable tool in conversations and automated pipelines.

Postman

Import the full Osapher API collection into Postman for testing and development.

import URL
https://app.osapher.com/api/v1/openapi.json

In Postman, go to Import → Link and paste the URL above. All endpoints will be imported as a ready-to-run collection with example requests.