brave_image_search
Search for images using the Brave Search API to find pictures of people, places, things, graphic design ideas, and art inspiration.
Instructions
Performs an image search using the Brave Search API. Helpful for when you need pictures of people, places, things, graphic design ideas, art inspiration, and more. When relaying results in a markdown environment, it may be helpful to include images in the results (e.g., ).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of results (1-200, default 50). Combine this parameter with `offset` to paginate search results. | |
country | No | Search query country, where the results come from. The country string is limited to 2 character country codes of supported countries. | US |
query | Yes | The user's search query. Query cannot be empty. Limited to 400 characters and 50 words. | |
safesearch | No | Filters search results for adult content. The following values are supported: 'off' - No filtering. 'strict' - Drops all adult content from search results. | strict |
search_lang | No | Search language preference. The 2 or more character language code for which the search results are provided. | en |
spellcheck | No | Whether to spellcheck provided query. |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 50,
"description": "Number of results (1-200, default 50). Combine this parameter with `offset` to paginate search results.",
"maximum": 200,
"minimum": 1,
"type": "integer"
},
"country": {
"default": "US",
"description": "Search query country, where the results come from. The country string is limited to 2 character country codes of supported countries.",
"type": "string"
},
"query": {
"description": "The user's search query. Query cannot be empty. Limited to 400 characters and 50 words.",
"maxLength": 400,
"minLength": 1,
"type": "string"
},
"safesearch": {
"default": "strict",
"description": "Filters search results for adult content. The following values are supported: 'off' - No filtering. 'strict' - Drops all adult content from search results.",
"enum": [
"off",
"strict"
],
"type": "string"
},
"search_lang": {
"default": "en",
"description": "Search language preference. The 2 or more character language code for which the search results are provided.",
"type": "string"
},
"spellcheck": {
"default": true,
"description": "Whether to spellcheck provided query.",
"type": "boolean"
}
},
"required": [
"query"
],
"type": "object"
}