Live universal sky snapshot, no inputs: geocentric ecliptic longitudes for 13 bodies (Sun
Live universal sky snapshot, no inputs: geocentric ecliptic longitudes for 13 bodies (Sun through Pluto, Chiron, lunar nodes) with zodiac sign/degree and 64-gate wheel placements, current moon phase and illumination, active retrogrades, and a 30-day almanac of upcoming stations and lunations. JPL-validated ephemeris. JSON. $0.01 USDC via x402, or API key.
10000 (raw units)
price
14
calls / 30d
6
unique payers
2026-09-15
updated
Provider
mysticapi.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x40e5A6647803c2DD686049dcDC5F9c34817D7a7F",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "PFhAMHQ6xPADiH63sjpC28RfyVChoXqgHFjbX1tkU6R",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"attribution": "Powered by MysticAPI — https://mysticapi.com",
"date": "2026-07-20",
"generatedAt": "2026-07-20T13:07:00.000Z",
"moon": {
"elongationDeg": 132.4,
"illumination": 0.82,
"nextFullMoon": {
"date": "2026-07-29",
"daysAway": 9,
"prep": "A culmination point — notice what has come to a head and release what is complete.",
"title": "Full Moon",
"type": "full_moon"
},
"nextNewMoon": {
"date": "2026-08-12",
"daysAway": 23,
"prep": "A natural reset — a good window to set intentions and begin.",
"title": "New Moon",
"type": "new_moon"
},
"phaseName": "Waxing Gibbous"
},
"positions": {
"moon": {
"gate": {
"gate": 5,
"line": 2
},
"label": "Moon",
"longitude": 250.7,
"zodiac": {
"degree": 10.7,
"sign": "Sagittarius"
}
},
"sun": {
"gate": {
"gate": 33,
"line": 4
},
"label": "Sun",
"longitude": 118.32,
"zodiac": {
"degree": 28.32,
"sign": "Cancer"
}
}
},
"retrogrades": {
"active": [
{
"label": "Saturn",
"planet": "saturn"
}
],
"upcomingStations": []
},
"upcoming": [
{
"date": "2026-07-29",
"daysAway": 9,
"prep": "A culmination point — notice what has come to a head and release what is complete.",
"title": "Full Moon",
"type": "full_moon"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"attribution": {
"type": "string"
},
"date": {
"description": "UTC date (YYYY-MM-DD)",
"type": "string"
},
"generatedAt": {
"description": "ISO instant the snapshot was computed",
"type": "string"
},
"moon": {
"description": "Phase name, illumination fraction 0..1, elongation degrees, next new/full moon events",
"type": "object"
},
"positions": {
"description": "Map of 13 bodies (sun, moon, mercury, venus, mars, jupiter, saturn, uranus, neptune, pluto, chiron, northNode, southNode) — example truncated to two.",
"type": "object"
},
"retrogrades": {
"description": "Active retrogrades + upcoming stations in the scan window",
"type": "object"
},
"upcoming": {
"description": "Chronological universal events over the next 30 days",
"type": "array"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://mysticapi.com/v1/sky/today" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://mysticapi.com/v1/sky/today");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://mysticapi.com/v1/sky/today")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/2203.json, and this resource appears in /discovery/resources and /discovery/search.