# Maha Strategies Celestial Position Snapshot

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

Calculates geocentric longitudes for seven classical celestial bodies at a given UTC instant in both Tropical and Lahiri Sidereal frames, returning a deterministic integrity receipt.

## Facts

- Endpoint: POST https://www.mahastrategies.com/api/v1/calculations/positions
- Price: $0.02/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-celestial-position-snapshot-45ff8cdc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sEU4tGQuTLMpUFzXzGbMz

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-celestial-position-snapshot-45ff8cdc -d '<json body>'
```

Example prompt: Calculate the geocentric positions of the seven classical planets right now — give me both Tropical and Lahiri Sidereal longitudes, and include the integrity receipt so I can verify the result.

## When to prefer this

Choose this endpoint when you need a deterministic, auditable snapshot of classical planetary longitudes at a specific UTC instant in both Tropical and Lahiri Sidereal frames, especially when an integrity receipt is required for verification. It is ideal for astrology software pipelines, Vedic chart construction, or any workflow requiring tamper-evident celestial position data without interpretations or forecasts.

## Known failure modes

- Invalid or malformed UTC instant string returns a validation error
- Unsupported data class value (not 'public' or 'synthetic') causes schema rejection
- Missing required fields (dataClass or instantUtc) returns a 400-level error
- Timestamps outside supported range may produce an error or undefined behavior
- Network or payment failure prevents the calculation from completing

## How this service works

Build an astronomy or astrology tool with seven classical-body geocentric longitudes at one UTC instant, Tropical and versioned Lahiri Sidereal frames, conventions and a deterministic receipt. Public or synthetic inputs only. No interpretations, forecasts or predictive certification. Request and result bodies are not stored.

## Output

Returns a versioned JSON object (maha-celestial-calculations/0.1) containing the offer ID, input digest, geocentric longitudes for seven classical bodies in both Tropical and Lahiri Sidereal frames, explicit convention metadata, boundary declarations, and a deterministic receipt digest for integrity verification. No interpretations, forecasts, or predictive content is included.

## 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",
     "additionalProperties": false,
     "properties": {
      "dataClass": {
       "type": "string",
       "enum": [
        "public",
        "synthetic"
       ]
      },
      "instantUtc": {
       "type": "string"
      }
     },
     "required": [
      "dataClass",
      "instantUtc"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "additionalProperties": false,
     "required": [
      "version",
      "offerId",
      "inputDigest",
      "result",
      "conventions",
      "boundaries",
      "receiptDigest"
     ],
     "properties": {
      "version": {
       "const": "maha-celestial-calculations/0.1"
      },
      "offerId": {
       "const": "celestial-position-snapshot"
      },
      "inputDigest": {
       "type": "string"
      },
      "result": {
       "type": "object"
      },
      "conventions": {
       "type": "object"
      },
      "boundaries": {
       "type": "array"
      },
      "receiptDigest": {
       "type": "string"
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/maha-strategies-celestial-position-snapshot-45ff8cdc/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)
