Your agent can't reach NASA's feeds; this returns the Astronomy Picture of the Day, asteroid approaches, and Mars rover photos.
Space and astronomy data from NASA's open APIs: the Astronomy Picture of the Day, near-Earth asteroid approaches, and Mars rover photos. Imagery and data are US public domain. Outputs are sourced from NASA APIs and are not independently NASA-verified.
Get NASA's Astronomy Picture of the Day, by date or as a random set.
Single date, YYYY-MM-DD.
Return N random entries (do not combine with a date range).
Return a thumbnail URL for video entries.
Range end date, YYYY-MM-DD.
Range start date, YYYY-MM-DD.
curl -X POST "https://skill.askfaro.com/skills/space/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Show me NASA's astronomy picture of the day"
}
}'askfaro describe space/apod
Install pip install askfaro-cli, then askfaro auth login.
List near-Earth asteroid approaches over a date range.
Range end date, YYYY-MM-DD (max 7 days after start).
Range start date, YYYY-MM-DD.
curl -X POST "https://skill.askfaro.com/skills/space/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "What asteroids are passing near Earth this week?"
}
}'askfaro describe space/neo_feed
Install pip install askfaro-cli, then askfaro auth login.
Get photos taken by a Mars rover on a given Martian or Earth day.
Martian day (sol) of the mission. Supply this or earth_date.
Result page (25 photos per page).
Mars rover name.
Camera abbreviation to filter by (e.g. FHAZ, RHAZ, MAST, NAVCAM).
Earth date, YYYY-MM-DD. Supply this or sol.
curl -X POST "https://skill.askfaro.com/skills/space/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Show Curiosity rover photos from sol 1000"
}
}'askfaro describe space/mars_rover_photos
Install pip install askfaro-cli, then askfaro auth login.