# Mahastrategies Edition Verse Resolution

> Mahastrategies Edition Verse Resolution is a paid API for AI agents from www.mahastrategies.com, paid per call via x402, $0.036/call, status unknown (last checked 2026-09-14).

Resolves a pasuram number to its complete unit and exact locator within a specific pinned Project Madurai/Hart edition of Divya Prabandham.

## Facts

- Endpoint: POST https://www.mahastrategies.com/api/v1/micro/edition-verse-resolution
- Price: $0.036/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mahastrategies-edition-verse-resolution-4d259021
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CiH0TdX8yxz8fObqKcfDh

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 mahastrategies-edition-verse-resolution-4d259021 -d '<json body>'
```

Example prompt: Look up pasuram 1045 in the project-madurai-divya-prabandham-part-4 edition using public data and tell me its complete unit and exact edition locator.

## When to prefer this

Choose this endpoint when you need a machine-readable, verifiable locator for a specific pasuram number within the pinned Project Madurai Divya Prabandham Part 4 edition. It is ideal when you need edition-consistent, digest-verified references rather than translated content, cross-edition renumbering, or verse text reproduction.

## Known failure modes

- Pasuram number out of range (must be 1–10000) returns validation error
- Unsupported editionId value returns rejection
- Invalid or mismatched expectedRegistryDigest causes resolution failure
- Pasuram not present in the specified edition returns empty or error result
- Malformed body or missing required fields returns schema validation error

## How this service works

Locate a printed pasuram reference in the pinned Project Madurai/Hart atlas. Resolves one supported number to its complete unit and exact edition-specific locator. No cross-edition renumbering, translation reproduction or single-verse occurrence claim.

## Output

Returns a structured object containing the resolved unit, edition-specific locator, boundaries array, offer ID, version string, input digest, receipt digest, and amount in base units for the queried pasuram within the specified edition.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "dataClass": {
       "type": "string",
       "enum": [
        "public",
        "synthetic"
       ]
      },
      "editionId": {
       "type": "string",
       "enum": [
        "project-madurai-divya-prabandham-part-4"
       ]
      },
      "pasuram": {
       "type": "integer",
       "minimum": 1,
       "maximum": 10000
      },
      "expectedRegistryDigest": {
       "type": "string",
       "maxLength": 71
      }
     },
     "required": [
      "dataClass",
      "editionId",
      "pasuram",
      "expectedRegistryDigest"
     ],
     "additionalProperties": false
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "version": {
       "type": "string",
       "enum": [
        "maha-microproducts/0.1"
       ]
      },
      "offerId": {
       "type": "string",
       "enum": [
        "edition-verse-resolution"
       ]
      },
      "amountBaseUnits": {
       "type": "string",
       "enum": [
        "36000"
       ]
      },
      "inputDigest": {
       "type": "string",
       "maxLength": 71
      },
      "result": {
       "type": "object"
      },
      "boundaries": {
       "type": "array",
       "minItems": 0,
       "maxItems": 128
      },
      "receiptDigest": {
       "type": "string",
       "maxLength": 71
      }
     },
     "required": [
      "version",
      "offerId",
      "amountBaseUnits",
      "inputDigest",
      "result",
      "boundaries",
      "receiptDigest"
     ],
     "additionalProperties": false
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mahastrategies-edition-verse-resolution-4d259021/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)
