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.
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.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
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?
As of our last scheduled check, Nebulum Mars Rovers API is healthy with 100% uptime over 90 days and a 688 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.