Nebulum Mars Rovers API
Nebulum Mars Rovers API — Access real-time photos taken by Mars rovers Perseve
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.
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://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
}
}
}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())/api/v1/photos/878PROBEDNebulum Mars Rovers API — Access real-time photos taken by Mars rovers Perseve
/api/v1/photosPhoto collection.
/api/v1/photos/1Photos details by ID (example: 1).
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
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.
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.