verity
API · Coming soon

What agents can do with Verity.

The same evidenced understanding already trusted internally, opened up as one interface any agent can call directly: an answer, its evidence, and a confidence level, not raw CRM rows.

Not open yet. This is the interface Verity already uses internally, being opened up to agents next.

agent.ts
// what an agent asks
await verity.ask({
  account:  "northwind-robotics",
  question: "What's blocking this deal?",
});

// what it gets back
{
  answer:     "Procurement has become the primary blocker.",
  evidence:   ["3 emails", "1 call this week"],
  confidence: "high",
}
Want in when it opens?