# Maha Strategies Divine Name Disambiguation

> Maha Strategies Divine Name Disambiguation is a paid API for AI agents from www.mahastrategies.com, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Resolves an exact Tamil divine name spelling into source-scoped relationship records from a pinned registry, with explicit handling of ambiguity and name coincidence.

## Facts

- Endpoint: POST https://www.mahastrategies.com/api/v1/micro/divine-name-disambiguation
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/maha-strategies-divine-name-disambiguation-8c0a19f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KDQrByrFRmf8jn3aqmWpv

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-strategies-divine-name-disambiguation-8c0a19f3 -d '<json body>'
```

Example prompt: Look up the Tamil divine name 'Murugan' in the public data class against the pinned registry and return its source-scoped relationship records, flagging any ambiguity or name coincidence.

## When to prefer this

Choose this endpoint when you need to resolve an exact Tamil divine name spelling to source-scoped registry records with explicit ambiguity handling and a pinned, auditable registry digest. It is best suited for structured knowledge-graph pipelines, religious-text analysis tools, or name validation workflows where exact spelling matters and fuzzy synonym matching is undesirable. Avoid it if you need full source texts, theological certification, or fuzzy/universal synonym resolution.

## Known failure modes

- Name not found in registry: result will indicate no matching records for the exact spelling provided
- Registry digest mismatch: if expectedRegistryDigest does not match the pinned registry, the call may be rejected or flagged
- Invalid data class: only 'public' or 'synthetic' are accepted; any other value causes a schema validation error
- Name exceeds 80 characters or is empty: schema validation rejects inputs outside minLength/maxLength bounds
- Ambiguous name with multiple coincident records: returned explicitly in result but may require caller interpretation

## How this service works

Resolve an exact supported Tamil divine-name spelling to source-scoped records in a pinned registry. Keeps ambiguity and name coincidence explicit. No fuzzy universal synonym search, full source text or theological certification.

## Output

Returns a structured result object containing source-scoped relationship records for the resolved Tamil divine name, a list of boundary annotations (up to 128), input and receipt digests for auditability, the offer ID, version, and the amount charged in base units (5011). Ambiguity and name coincidence are surfaced explicitly in the result; full source text and theological certification are not included.

## 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": [
      "dataClass",
      "name",
      "expectedRegistryDigest"
     ],
     "properties": {
      "name": {
       "type": "string",
       "maxLength": 80,
       "minLength": 1
      },
      "dataClass": {
       "enum": [
        "public",
        "synthetic"
       ],
       "type": "string"
      },
      "expectedRegistryDigest": {
       "type": "string",
       "maxLength": 71
      }
     },
     "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",
      "amountBaseUnits",
      "inputDigest",
      "result",
      "boundaries",
      "receiptDigest"
     ],
     "properties": {
      "result": {
       "type": "object"
      },
      "offerId": {
       "enum": [
        "divine-name-disambiguation"
       ],
       "type": "string"
      },
      "version": {
       "enum": [
        "maha-microproducts/0.1"
       ],
       "type": "string"
      },
      "boundaries": {
       "type": "array",
       "maxItems": 128,
       "minItems": 0
      },
      "inputDigest": {
       "type": "string",
       "maxLength": 71
      },
      "receiptDigest": {
       "type": "string",
       "maxLength": 71
      },
      "amountBaseUnits": {
       "enum": [
        "14000"
       ],
       "type": "string"
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/maha-strategies-divine-name-disambiguation-8c0a19f3/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)
