Install
openclaw skills install search-imageImage search tool: queries Pixabay image API for photos, illustrations, and vectors, returning URLs and metadata for use in the current workflow.
openclaw skills install search-imageImage search tool: queries Pixabay image API for photos, illustrations, and vectors, returning URLs and metadata for use in the current workflow.
Invoke the search-image tool with a structured input object.
{
query: string;
imageType?: "all" | "photo" | "illustration" | "vector";
orientation?: "all" | "horizontal" | "vertical";
page?: number;
perPage?: number;
lang?: string;
}
search-image({
query: "cityscape skyline",
imageType: "photo",
orientation: "horizontal",
perPage: 6,
})