// 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.
- Open ChatGPT and go to Explore GPTs → Create
- Select Configure → Add Actions
- Click Import from URL and paste the spec URL:
https://app.osapher.com/api/v1/openapi.jsonChatGPT will automatically parse all available endpoints and make them callable from natural language prompts. No authentication required — all endpoints are public.
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:
{
"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.
- Add a Webhooks by Zapier action step
- Set method to GET
- Set URL to the verify endpoint with the ABN from a previous step:
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.
- Add an HTTP → Make a request module
- Set method to GET
- Set 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.
- In Google Cloud Console, open Vertex AI → Agent Builder
- Create or open an agent and go to Tools → Add tool
- Select OpenAPI and paste the spec URL:
https://app.osapher.com/api/v1/openapi.jsonThe 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.
https://app.osapher.com/api/v1/openapi.jsonIn Postman, go to Import → Link and paste the URL above. All endpoints will be imported as a ready-to-run collection with example requests.