search_nasa_images
Search NASA’s image, video, and audio library for space-related media. Specify search queries, media types, and page numbers to find and explore space content directly from NASA’s database.
Instructions
NASA 이미지 및 비디오 라이브러리에서 검색합니다
Input Schema
Name | Required | Description | Default |
---|---|---|---|
media_type | No | 미디어 타입 | image |
page | No | 페이지 번호 | |
q | Yes | 검색 쿼리 |
Input Schema (JSON Schema)
{
"properties": {
"media_type": {
"default": "image",
"description": "미디어 타입",
"enum": [
"image",
"video",
"audio"
],
"type": "string"
},
"page": {
"default": 1,
"description": "페이지 번호",
"type": "number"
},
"q": {
"description": "검색 쿼리",
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
}