Giphy
API actions for the Giphy integration.
Giphy
Search for GIFs using the Giphy API.
Search GIFs
Search for GIFs on Giphy using a query string.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | Yes | Search query for finding GIFs |
limit | number | No | Maximum number of GIFs to return |
rating | string | No | Content rating filter (g, pg, pg-13, r) |
Response
{
"count": 2,
"gifs": [
{
"id": "abc123",
"preview_url": "https://media.giphy.com/media/abc123/giphy.gif",
"title": "Funny Cat",
"url": "https://giphy.com/gifs/abc123"
},
{
"id": "def456",
"preview_url": "https://media.giphy.com/media/def456/giphy.gif",
"title": "Dancing Dog",
"url": "https://giphy.com/gifs/def456"
}
]
}