Image search tool: queries Pixabay image API for photos, illustrations, and vectors, returning URLs and metadata for use in the current workflow.
---
name: search-image
version: 1.0.9
description: 'Image search tool: queries Pixabay image API for photos, illustrations, and vectors, returning URLs and metadata for use in the current workflow.'
metadata:
{
'openclaw': { 'systemPrompt': 'When invoking this skill, call the search-image tool.' },
}
---
# search-image
Image search tool: queries Pixabay image API for photos, illustrations, and vectors, returning URLs and metadata for use in the current workflow.
## Trigger Keywords
- search-image
- pixabay image
- image search
## Usage
Invoke the `search-image` tool with a structured input object.
```ts
{
query: string;
imageType?: "all" | "photo" | "illustration" | "vector";
orientation?: "all" | "horizontal" | "vertical";
page?: number;
perPage?: number;
lang?: string;
}
```
## Notes
- Pixabay performs best with English keywords.
- Surface the best result URLs and short metadata instead of dumping raw payloads.
- If no result is found, suggest a broader keyword.
## Example
```ts
search-image({
query: "cityscape skyline",
imageType: "photo",
orientation: "horizontal",
perPage: 6,
})
```
don't have the plugin yet? install it then click "run inline in claude" again.