Noctua

Resolve star and sky-object names to catalog data

AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
ON PROBE SCHEDULE

We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗

Uptime historystarts after first probe

On our probe schedule. Uptime charts appear after the first check lands.

Example responsefrom provider docs — not verified by us
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"
  ]
}
Call itcurl · fetch · python
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

Endpoints · 6On scheduleFULL DOCS ↗
On schedule — GET /skysources/name/polaris awaits first probe
GET/skysources/name/polarisPROBED

Resolve star and sky-object names to catalog data

GET/skysources

Skysources — documented GET route.

GET/skysources/1

Skysources details by ID (example: 1).

GET/skysources?limit=10

Skysources — documented GET route.

GET/skysources/search?q=test

Search by query parameters.

GET/locations/

Get all locations for the current user

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.