Brave Search

brave_image_search

Performs an image search using the Brave Search API. Helpful when you need pictures of people, places, things, graphic-design ideas, or art inspiration. Counts of up to 100 are supported.

Remote brave

Other tools also called brave_image_search? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "q": {
      "type": "string",
      "maxLength": 400,
      "description": "Search query (max 400 characters and 50 words)."
    },
    "count": {
      "type": "integer",
      "maximum": 100,
      "minimum": 1,
      "description": "Number of results (max 100; default 50)."
    },
    "country": {
      "type": "string",
      "default": "US",
      "maxLength": 2,
      "minLength": 2,
      "description": "2-letter country code (ISO 3166-1 alpha-2). Defaults to US."
    },
    "safesearch": {
      "enum": [
        "off",
        "moderate",
        "strict"
      ],
      "type": "string",
      "default": "moderate",
      "description": "Filter level for adult content."
    },
    "spellcheck": {
      "type": "boolean",
      "default": true,
      "description": "Whether to spellcheck the query."
    },
    "search_lang": {
      "type": "string",
      "default": "en",
      "description": "2-letter language code for the search. Defaults to en."
    }
  }
}