search_gifs
Search for GIFs on Giphy using keywords to find animated images for messages, presentations, or social media posts with content filtering options.
Instructions
Search for GIFs on Giphy with a query string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lang | No | Language code (default: en) | |
limit | No | Maximum number of objects to return (default: 10, max: 50) | |
offset | No | Results offset (default: 0) | |
query | Yes | Search query term or phrase | |
rating | No | Content rating (g, pg, pg-13, r) |
Input Schema (JSON Schema)
{
"properties": {
"lang": {
"description": "Language code (default: en)",
"type": "string"
},
"limit": {
"description": "Maximum number of objects to return (default: 10, max: 50)",
"type": "number"
},
"offset": {
"description": "Results offset (default: 0)",
"type": "number"
},
"query": {
"description": "Search query term or phrase",
"type": "string"
},
"rating": {
"description": "Content rating (g, pg, pg-13, r)",
"enum": [
"g",
"pg",
"pg-13",
"r"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}