get_random_gif
Retrieve a random GIF from Giphy with optional tag filtering and content rating controls for appropriate usage.
Instructions
Get a random GIF from Giphy, optionally filtered by tag
Input Schema
Name | Required | Description | Default |
---|---|---|---|
rating | No | Content rating (g, pg, pg-13, r) | |
tag | No | Tag to limit random results (optional) |
Input Schema (JSON Schema)
{
"properties": {
"rating": {
"description": "Content rating (g, pg, pg-13, r)",
"enum": [
"g",
"pg",
"pg-13",
"r"
],
"type": "string"
},
"tag": {
"description": "Tag to limit random results (optional)",
"type": "string"
}
},
"type": "object"
}