Track Space Missions
Stay updated on space missions with NASA imagery and daily astronomical highlights.
NASA data: APOD, asteroids & ISS
Real-time and historical NASA data. Astronomy Picture of the Day, near-Earth asteroid tracking with hazard ratings, ISS position, crew currently in space, and full-disc Earth photos from orbit. For educational apps, dashboards, and content.
Get NASA's Astronomy Picture of the Day (APOD). Get today's picture, a specific date, a date range, or random pictures.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "space-data",
"skill": "picture_of_the_day",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callGet asteroids and near-Earth objects passing close to Earth in a date range. Returns name, estimated size, hazard status, velocity, and miss distance for each object.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "space-data",
"skill": "near_earth_objects",
"input": {
"start_date": "2026-03-20"
}
}' \
https://api.toolrouter.com/v1/tools/callGet the current real-time position of the International Space Station. Returns latitude and longitude coordinates with a UTC timestamp.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "space-data",
"skill": "iss_position",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callGet a list of everyone currently in space right now. Returns the total count, each person's name and which spacecraft they are aboard, grouped by spacecraft.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "space-data",
"skill": "people_in_space",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callGet the most recent Earth images from NASA's EPIC (Earth Polychromatic Imaging Camera) on the DSCOVR satellite. Returns full-disc images of Earth with date, caption, and coordinates.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "space-data",
"skill": "earth_imagery",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"space-data","skill":"picture_of_the_day","input":{}}' \
https://api.toolrouter.com/v1/tools/callStay updated on space missions with NASA imagery and daily astronomical highlights.
Research astronomical events with NASA imagery and expert explanations of celestial phenomena.
Find relevant academic papers on any research topic across millions of scholarly publications.
Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.
Monitor environmental conditions combining seismic activity, weather forecasts, near-Earth object tracking, and visual dashboards.
Build engaging space education materials with NASA data, research, illustrations, and data visualizations.
Yes. `picture_of_the_day` supports today, a specific date, a date range, or a random set of APOD images.
Yes. `near_earth_objects` returns asteroids for a date range up to 7 days, including estimated size, hazard status, velocity, and miss distance.
Yes. `iss_position` returns the current latitude, longitude, and timestamp for the International Space Station, and `people_in_space` shows who is currently aboard.
Yes. `earth_imagery` returns full-disc Earth images from the DSCOVR satellite, which works well for dashboards and educational content.