Satellite Imagery
Satellite photos of any location on Earth
Get satellite and aerial photos of any location on Earth. Sub-meter resolution in cities, global coverage. Also NASA dated imagery (MODIS) and full-Earth photos from the DSCOVR satellite.
Get a high-resolution satellite photo of any location on Earth. Sub-meter resolution in populated areas — you can see buildings, roads, and vehicles. Powered by Esri World Imagery.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "satellite-imagery",
"skill": "capture_location",
"input": {
"latitude": 38.871,
"longitude": -77.056,
"radius_km": 0.5
}
}' \
https://api.toolrouter.com/v1/tools/callGet NASA satellite imagery for a specific date. Uses MODIS Terra at 250m resolution — good for large-area views, natural disasters, and before/after comparisons. Specify a date to see what the area looked like.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "satellite-imagery",
"skill": "capture_dated",
"input": {
"latitude": 34.05,
"longitude": -118.25,
"date": "2025-01-10",
"radius_km": 30
}
}' \
https://api.toolrouter.com/v1/tools/callGet a full-Earth photo taken from deep space by NASA DSCOVR satellite (1.5M km from Earth). Shows the entire sunlit side of the planet. Specify a date or get the latest available image.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "satellite-imagery",
"skill": "earth_photo",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callGet metadata about satellite imagery at a location — when it was captured, which satellite/source, and the resolution. Use this to check how recent the imagery is before or after taking a photo.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "satellite-imagery",
"skill": "image_metadata",
"input": {
"latitude": 38.871,
"longitude": -77.056
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"satellite-imagery","skill":"capture_location","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently Asked Questions
Can I get a satellite photo of a specific place?
`capture_location` gives a high-resolution image for any latitude and longitude, with sub-meter detail in populated areas.
Can I see what a place looked like on a specific date?
`capture_dated` uses NASA MODIS imagery for date-specific, larger-area views and before/after comparisons.
How do I check how recent the imagery is?
`image_metadata` shows the best available source, capture date, and resolution for a location.
Can I get the full Earth from space?
Yes. `earth_photo` returns the latest available full-Earth image or a date-specific one if you provide `date`.