Search Image

Data & APIs

Image search tool: queries Pixabay image API for photos, illustrations, and vectors, returning URLs and metadata for use in the current workflow.

Install

openclaw skills install search-image

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.

{
  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

search-image({
  query: "cityscape skyline",
  imageType: "photo",
  orientation: "horizontal",
  perPage: 6,
})