# Maha Celestial Result Compatibility Checker

> Maha Celestial Result Compatibility Checker is a paid API for AI agents from www.mahastrategies.com, paid per call via x402, $0.007/call, status unknown (last checked 2026-09-14).

Compares two structured celestial result declarations using versioned rules, reporting mismatched conventions and missing prerequisites.

## Facts

- Endpoint: POST https://www.mahastrategies.com/api/v1/micro/celestial-result-compatibility
- Price: $0.007/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/maha-celestial-result-compatibility-checker-7a676ea5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BHdKXYWGItCojgNWn53_J

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-celestial-result-compatibility-checker-7a676ea5 -d '<json body>'
```

Example prompt: Can you check if these two celestial result declarations are compatible with each other — classify the data as 'public', and tell me if there are any mismatched conventions or missing prerequisites between the left and right objects?

## When to prefer this

Use this endpoint when you need a deterministic, rule-based structural comparison of two celestial result declarations and want explicit reporting of convention mismatches and missing prerequisites — without any inference, time conversion, calculation verification, or predictive logic. It is specifically designed for celestial/astrological data structures and is not a general-purpose diff or schema validator.

## Known failure modes

- Missing required fields (left, right, or dataClass) result in validation errors
- Invalid dataClass value (not 'public' or 'synthetic') causes rejection
- Malformed or non-object left/right fields cause parsing failures
- Payment failure (x402) if USDC funds are insufficient
- Empty or null celestial result objects may return empty boundary lists with no meaningful output

## How this service works

Compare two structured celestial result declarations using versioned rules. Reports mismatched conventions and missing prerequisites. No inferred settings, time/frame conversion, calculation verification or predictive validation.

## Output

Returns a structured compatibility result object along with a list of boundary issues (up to 128), the offer ID ('celestial-result-compatibility'), a version string ('maha-microproducts/0.1'), an input digest, a receipt digest, and the amount charged in base units. The result details which conventions are mismatched and which prerequisites are absent between the two input declarations.

## 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",
      "left",
      "right"
     ],
     "properties": {
      "left": {
       "type": "object"
      },
      "right": {
       "type": "object"
      },
      "dataClass": {
       "enum": [
        "public",
        "synthetic"
       ],
       "type": "string"
      }
     },
     "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": [
        "celestial-result-compatibility"
       ],
       "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": [
        "7000"
       ],
       "type": "string"
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/maha-celestial-result-compatibility-checker-7a676ea5/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)
