Noctua
Resolve star and sky-object names to catalog data
NoctuaSky's REST API powers a stargazing app and resolves celestial object names to detailed records. Look up Polaris and you get magnitudes, coordinates, spectral type, and a long list of catalog aliases. Useful for planetarium and observing tools.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://api.noctuasky.com/api/v1/skysources/name/polaris
{
"match": "NAME Polaris",
"model": "star",
"model_data": {
"Vmag": 2.02,
"ra": 37.95456067,
"de": 89.26410897,
"spect_t": "F8Ib"
},
"names": [
"NAME Polaris",
"* alf UMi",
"HD 8890"
]
}curl "https://api.noctuasky.com/api/v1/skysources/name/polaris"const res = await fetch("https://api.noctuasky.com/api/v1/skysources/name/polaris");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.noctuasky.com/api/v1/skysources/name/polaris")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/skysources/name/polarisPROBEDResolve star and sky-object names to catalog data
/skysourcesSkysources — documented GET route.
/skysources/1Skysources details by ID (example: 1).
/skysources?limit=10Skysources — documented GET route.
/skysources/search?q=testSearch by query parameters.
/locations/Get all locations for the current user
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
Noctua: common questions
Is Noctua free to use?
Yes — Noctua is a free science & space API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Noctua need an API key?
No — Noctua needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Noctua from the browser?
Not directly — Noctua doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Noctua up right now?
Noctua is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.