# Maha Provenance Standard Claim Triage API

> Maha Provenance Standard Claim Triage API is a paid API for AI agents from www.mahastrategies.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Automatically triages each substantive claim in a nonfiction passage, assigning a provenance status (VERIFIED, SOURCED, BOUNDARY, ILLUSTRATIVE, or UNVERIFIED) with a rationale and suggested action per claim.

## Facts

- Endpoint: POST https://www.mahastrategies.com/api/v1/mps/audit
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/maha-provenance-standard-claim-triage-api-ad868233
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Un_N3xOAV90llVwCJ6udR

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability maha-provenance-standard-claim-triage-api-ad868233 -d '<json body>'
```

Example prompt: Can you run a Maha Provenance Standard audit on this draft article excerpt and tell me which claims are verified, sourced, or unverified so I know what needs more support before we publish? Here's the text: [paste up to 6000 characters of the nonfiction passage].

## When to prefer this

Choose this endpoint when you need automated, claim-level provenance triage of a nonfiction passage before publication or editorial review — especially when you want structured per-claim status labels (VERIFIED, SOURCED, BOUNDARY, ILLUSTRATIVE, UNVERIFIED) rather than a generic grammar or style check. Prefer this over general-purpose LLM fact-checking when you need a consistent, schema-driven audit trail with auditIds and retrievalTokens for downstream workflows.

## Known failure modes

- Text exceeds 6000 character limit — request rejected with validation error
- Missing or invalid clientRequestId (must be 8–120 characters) — request rejected
- Malformed JSON body or wrong bodyType — API returns error
- Model processing failure — status returns as 'failed' with warnings
- Idempotent replay detected — same clientRequestId returns cached result without re-processing

## How this service works

Review a passage for Maha Principle epistemic classifications with a model-backed audit, not factual certification, legal advice, or human verification. Save the job reference and retrieve the completed result; job acceptance is not delivery. Short input excerpts may be retained in the result.

## Output

Returns a structured audit result containing a per-claim breakdown where each claim receives a provenance status label (VERIFIED, SOURCED, BOUNDARY, ILLUSTRATIVE, or UNVERIFIED), a rationale explaining the classification, and a suggested editorial action. The response also includes an auditId, retrievalToken, inputHash, idempotency flag, warnings, and metadata confirming that the full passage was not stored but verbatim claim excerpts are retained.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "clientRequestId",
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "maxLength": 6000,
       "minLength": 1
      },
      "clientRequestId": {
       "type": "string",
       "maxLength": 120,
       "minLength": 8
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "version",
      "offerId",
      "auditId",
      "retrievalToken",
      "clientRequestId",
      "inputHash",
      "status",
      "idempotentReplay",
      "warnings",
      "warningCodes",
      "retentionBoundaries",
      "fullPassageStored",
      "verbatimExcerptsRetained"
     ],
     "properties": {
      "audit": {
       "type": "object"
      },
      "status": {
       "enum": [
        "completed",
        "processing",
        "failed"
       ],
       "type": "string"
      },
      "auditId": {
       "type": "string"
      },
      "offerId": {
       "type": "string",
       "const": "mps-autonomous-audit"
      },
      "version": {
       "type": "string",
       "const": "0.1"
      },
      "warnings": {
       "type": "array"
      },
      "inputHash": {
       "type": "string"
      },
      "warningCodes": {
       "type": "array"
      },
      "retentionNote": {
       "type": "string"
      },
      "retrievalToken": {
       "type": "string"
      },
      "clientRequestId": {
       "type": "string",
       "maxLength": 120,
       "minLength": 8
      },
      "idempotentReplay": {
       "type": "boolean"
      },
      "fullPassageStored": {
       "type": "boolean",
       "const": false
      },
      "retentionBoundaries": {
       "type": "object"
      },
      "verbatimExcerptsRetained": {
       "ty
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/maha-provenance-standard-claim-triage-api-ad868233/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.mahastrategies.com](https://www.zero.xyz/host/www.mahastrategies.com/llms.txt)
