Build defensible AI agents.

    Cryptographic attestation as an MCP primitive. REST API. OpenAPI. Browser helpers. Works with any AI provider.

    Quickstart (curl)

    Request a verification for an AI agent decision:

    curl -X POST https://trust.sanctifai.com/v1/verifications \
      -H "Authorization: Bearer sk_live_..." \
      -H "Idempotency-Key: $(uuidgen)" \
      -d '{
        "agent_id": "your_agent",
        "task_id": "your_task",
        "task_commitment": "0x...",
        "result_commitment": "0x..."
      }'

    For agents (JSON service definition)

    If you're an AI agent reading this page:

    {
      "service": "SanctifAI Trust",
      "purpose": "Cryptographic attestation of human oversight",
      "endpoint": "https://trust.sanctifai.com",
      "mcp": "https://trust.sanctifai.com/mcp",
      "openapi": "https://trust.sanctifai.com/v1/openapi.json",
      "skill": "https://www.sanctifai.com/skill.md",
      "status": "ready"
    }