get_astronomy_picture_of_day
Retrieve NASA's astronomy picture of the day for a specific date or random images. Specify the date in YYYY-MM-DD format or count for multiple images. Optionally include thumbnail URLs for videos.
Instructions
Get NASA's astronomy picture of the day.
Args: date: Date of the image in YYYY-MM-DD format. If not specified, the current date is used. count: If specified, returns 'count' random images. Cannot be used with 'date'. thumbs: If True, returns the thumbnail URL for videos. If APOD is not a video, this parameter is ignored.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
date | No | ||
thumbs | No |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": null,
"title": "Count",
"type": "integer"
},
"date": {
"default": null,
"title": "Date",
"type": "string"
},
"thumbs": {
"default": false,
"title": "Thumbs",
"type": "boolean"
}
},
"title": "get_astronomy_picture_of_dayArguments",
"type": "object"
}