get_trending_gifs
Retrieve currently trending GIFs from Giphy with options to filter by content rating and control result quantity for integration into applications and content.
Instructions
Get currently trending GIFs on Giphy
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of objects to return (default: 10, max: 50) | |
offset | No | Results offset (default: 0) | |
rating | No | Content rating (g, pg, pg-13, r) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of objects to return (default: 10, max: 50)",
"type": "number"
},
"offset": {
"description": "Results offset (default: 0)",
"type": "number"
},
"rating": {
"description": "Content rating (g, pg, pg-13, r)",
"enum": [
"g",
"pg",
"pg-13",
"r"
],
"type": "string"
}
},
"type": "object"
}