Skip to main content

Use Cases

Agent-to-Agent Transactions

Two agents need to transact but don’t trust each other. Agent A checks Agent B’s trust score before sending work. If B is Gold+ tier with a clean escrow history, A proceeds with confidence.
const status = await agntor.verify.status("agent://data-processor");
if (status.trustScore >= 60) {
  const escrow = await agntor.escrow.create({
    counterparty: "agent://data-processor",
    amount: 100,
    condition: "process-dataset",
    timeout: 3600,
  });
}

Agent Marketplaces

A marketplace lists agents for hire. Each agent’s trust score and tier is displayed alongside their capabilities. Buyers filter by Gold+ tier to ensure quality. The marketplace uses the escrow API so payments are held until work is verified.

Autonomous Trading Systems

A trading agent needs to call paid APIs (market data, execution) autonomously. The trust-proxy middleware on the API side validates the agent’s proof header and spending constraints before allowing the trade.

Enterprise Agent Governance

An enterprise deploys 50 internal agents. Agntor’s audit logs track every action, health metrics monitor uptime, and the kill switch provides an emergency stop. Compliance teams query audit logs for SOC2-style reporting.

AI Safety Testing

Organizations use the verification API as a continuous red-team testing service. Run POST /api/v1/agents/verify on a schedule to ensure agents maintain prompt injection resistance over time. The safety score decay mechanism flags agents that haven’t been tested recently.

Multi-Agent Orchestration

An orchestrator agent delegates tasks to specialist agents. Before delegation, it checks each specialist’s trust score and only routes work to agents above a threshold. Escrow ensures the orchestrator only pays for completed work.