Nebulum Mars Rovers API

Nebulum Mars Rovers API — Access real-time photos taken by Mars rovers Perseve

🎬 MediaUNMONITORED
AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

Nebulum Mars Rovers API exposes access real-time photos taken by Mars rovers Perseverance and Curiosity through NASA missions. Developers can retrieve images based on unique photo IDs, Earth dates, or Martian sols. This API offers efficient access to fascinating Mars exploration data for enthusiasts and researchers. We verified a keyless GET endpoint returning JSON (Photography). Check the provider docs for rate limits and terms before production use.

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://rovers.nebulum.one/api/v1/photos/878

{
  "photo": {
    "id": 878,
    "sol": 4,
    "camera": {
      "id": 2,
      "name": "EDL_RDCAM",
      "rover_id": 1,
      "full_name": "Rover Down-Look Camera"
    },
    "img_src": "https://mars.nasa.gov/mars2020-raw-images/pub/ods/surface/sol/00004/ids/edr/browse/edl/EDE_0004_0667288829_514ECM_N0010052EDLC00004_0020LUJ01_1200.jpg",
    "earth_date": "2021-02-22",
    "rover": {
      "id": 1,
      "name": "Perseverance",
      "landing_date": "2021-02-18",
      "launch_date": null,
      "status": null,
      "max_sol": 1909,
      "max_date": "2026-07-03",
      "total_photos": 32214
    }
  }
}
Call itcurl · fetch · python
curl "https://rovers.nebulum.one/api/v1/photos/878"
const res = await fetch("https://rovers.nebulum.one/api/v1/photos/878");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://rovers.nebulum.one/api/v1/photos/878")
print(res.json())
Endpoints · 6On scheduleFULL DOCS ↗
On schedule — GET /api/v1/photos/878 awaits first probe
GET/api/v1/photos/878PROBED

Nebulum Mars Rovers API — Access real-time photos taken by Mars rovers Perseve

GET/api/v1/photos

Photo collection.

GET/api/v1/photos/1

Photos details by ID (example: 1).

GET/api

Api — documented GET route.

GET/api/1

Api details by ID (example: 1).

GET/api?limit=10

Api — documented GET route.

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.

Nebulum Mars Rovers API: common questions

Is Nebulum Mars Rovers API free to use?

Yes — Nebulum Mars Rovers API is a free media API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.

Does Nebulum Mars Rovers API need an API key?

No — Nebulum Mars Rovers API needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).

Can I call Nebulum Mars Rovers API from the browser?

Yes — Nebulum Mars Rovers API returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.

Is Nebulum Mars Rovers API up right now?

Nebulum Mars Rovers API 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.