This API is designed to collect image data gathered by NASA's Perseverance, Curiosity, Opportunity, and Spirit rovers on Mars and make it more easily available to other developers, educators, and citizen scientists.
You can use the API key DEMO_KEY to check things out. However, if you will be intensively using the APIs to, say, support a mobile application, then you should sign up for a NASA developer key. You can include this API key in a request with a query parameter api_key=<YOUR_KEY>
.
Each rover has its own set of photos stored in the database, which can be queried separately. There are several possible queries that can be made against the API. Photos are organized by the sol (Martian rotation or day) on which they were taken, counting up from the rover's landing date. A photo taken on Curiosity's 1000th Martian sol exploring Mars, for example, will have a sol attribute of 1000. If instead you prefer to search by the Earth date on which a photo was taken, you can do that too.
Along with querying by date, results can also be filtered by the camera with which it was taken. Each camera has a unique function and perspective, and they are named as follows:
Abbreviation | Camera |
---|---|
EDL_RUCAM | Rover Up-Look Camera |
EDL_RDCAM | Rover Down-Look Camera |
EDL_DDCAM | Descent Stage Down-Look Camera |
EDL_PUCAM1 | Parachute Up-Look Camera A |
EDL_PUCAM2 | Parachute Up-Look Camera B |
NAVCAM_LEFT | Navigation Camera - Left |
NAVCAM_RIGHT | Navigation Camera - Right |
MCZ_RIGHT | Mast Camera Zoom - Right |
MCZ_LEFT | Mast Camera Zoom - Left |
FRONT_HAZCAM_LEFT_A | Front Hazard Avoidance Camera - Left |
FRONT_HAZCAM_RIGHT_A | Front Hazard Avoidance Camera - Right |
REAR_HAZCAM_LEFT | Rear Hazard Avoidance Camera - Left |
REAR_HAZCAM_RIGHT | Rear Hazard Avoidance Camera - Right |
SKYCAM | MEDA Skycam |
SHERLOC_WATSON | SHERLOC WATSON Camera |
Abbreviation | Camera | Curiosity | Opportunity | Spirit |
---|---|---|---|---|
FHAZ | Front Hazard Avoidance Camera | ✔ | ✔ | ✔ |
RHAZ | Rear Hazard Avoidance Camera | ✔ | ✔ | ✔ |
MAST | Mast Camera | ✔ | ||
CHEMCAM | Chemistry and Camera Complex | ✔ | ||
MAHLI | Mars Hand Lens Imager | ✔ | ||
MARDI | Mars Descent Imager | ✔ | ||
NAVCAM | Navigation Camera | ✔ | ✔ | ✔ |
PANCAM | Panoramic Camera | ✔ | ✔ | |
MINITES | Miniature Thermal Emission Spectrometer (Mini-TES) | ✔ | ✔ |
Substitute https://api.nasa.gov/mars-photos/
with https://mars-photos.herokuapp.com/
if you want to query the API from a web application. The heroku version allows cross-origin requests and doesnt require an API key.
The API can be queried in the following format:
Queries by sol can range from 0, which is the date of landing, up to the current maximum in the database. The current max sol for each rover can be found at that rover's endpoint.
https://api.nasa.gov/mars-photos/api/v1/rovers/curiosity/photos?api_key=DEMO_KEY&sol=1000
Dates should be formatted as 'yyyy-mm-dd'. The earliest date available is the date of landing for each rover.
https://api.nasa.gov/mars-photos/api/v1/rovers/curiosity/photos?api_key=DEMO_KEY&earth_date=2015-6-3
The camera parameter is not case sensitive, but must be one of the camera abbreviations listed in the table above for the respective rover.
If you just want to receive photo data for the most recent Sol for which photos exist for a particular rover, you can visit the /latest_photos
endpoint.
https://api.nasa.gov/mars-photos/api/v1/rovers/curiosity/latest_photos?api_key=DEMO_KEY
A mission manifest is available for each Rover at the /manifests/<rover_name>
. This manifest will list details of the Rover's mission to help narrow down photo queries to the API. The information in the manifest includes:
- name
- landing_date
- launch_date
- status
- max_sol
- max_date
- total_photos
It also includes a list of objects under the photos
key which are grouped by sol
, and each of which contains:
- sol
- total_photos
- cameras
An example entry from /manifests/Curiosity
might look like:
{
sol: 0,
earth_date: "2012-08-06"
total_photos: 3702,
cameras: [
"CHEMCAM",
"FHAZ",
"MARDI",
"RHAZ"
]
}
This would tell you that this rover, on sol 0, took 3702 photos, and those are from among the CHEMCAM, FHAZ, MARDI, and RHAZ cameras.
The database will be updated regularly with the latest photos from the red planet.
If you would like to contribute to Mars Rover Photo API, feel free to create a pull request. If you'd like to contact me, you can reach me at chrisccerami@gmail.com or on Twitter @chrisccerami.
- Fork it ( https://github.com/chrisccerami/mars-photo-api/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request