Platform
Verify exposes a persistent counterparty intelligence layer via MCP and REST API. Screen parties, receive machine-readable decisions, and build ongoing intelligence into contracts, agents, and autonomous workflows.
Integrate counterparty decisioning directly inside AI agents and autonomous workflows that support the Model Context Protocol. Verify returns structured decisions your system can act on without human intervention.
// Inside your AI agent
verify_contract({
contractId: "contract_abc123",
parties: ["Acme Corp", "John Smith"]
})
Persistent counterparty intelligence over REST. Upload contracts, retrieve structured risk decisions, and access counterparty profiles and event timelines.
POST /api/contracts/upload
POST /api/contracts/:id/run-risk
GET /api/counterparties/:id
GET /api/counterparties/:id/timeline
GET /api/reports/:id/pdf
Authentication
// Include on every request
x-verify-api-key: YOUR_API_KEY
Upload a contract
// curl
curl -X POST \
https://api.verify.inc/api/contracts/upload \
-H "x-verify-api-key: YOUR_API_KEY" \
-F "file=@contract.pdf"
Decision payload
// Structured decision — machine-readable, agent-ready
{
"decision": "review_required",
"confidence": 0.93,
"monitoring": true
}
Counterparty profile
// GET /api/counterparties/:id/timeline — response
{
"canonicalName": "Acme Corp",
"screeningCount": 3,
"currentRiskBadge": "green",
"events": [
{ "eventType": "screening_completed", "severity": "info" }
]
}
Embed structured risk decisioning inside AI agents. Verify returns machine-readable decisions your agent can route on without human review.
Integrate counterparty intelligence inside DocuSign, Ironclad, or proprietary contract systems. Persistent profiles update with every engagement.
Build screening, decisioning, and monitoring into any contract pipeline. Event timelines and structured outputs ready for downstream systems.
API access and MCP server are available for teams. Contact us to request access.