search_pixabay_images
Search for high-quality images on Pixabay using keywords, filters for image type and orientation, and customize the number of results per page.
Instructions
Search for images on Pixabay
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image_type | No | Filter results by image type | all |
orientation | No | Filter results by image orientation | all |
per_page | No | Number of results per page (3-200) | |
query | Yes | Search query terms |
Input Schema (JSON Schema)
{
"properties": {
"image_type": {
"default": "all",
"description": "Filter results by image type",
"enum": [
"all",
"photo",
"illustration",
"vector"
],
"type": "string"
},
"orientation": {
"default": "all",
"description": "Filter results by image orientation",
"enum": [
"all",
"horizontal",
"vertical"
],
"type": "string"
},
"per_page": {
"default": 20,
"description": "Number of results per page (3-200)",
"maximum": 200,
"minimum": 3,
"type": "number"
},
"query": {
"description": "Search query terms",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}