Random GIF
documentedReturn a random GIF, optionally filtered by a tag.
GET api.giphy.com/v1/gifs/randomGIFsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
I checked the official GIPHY Random Endpoint docs. The endpoint is https://api.giphy.com/v1/gifs/random and it requires an api_key; you can optionally pass tag, rating, random_id, country_code, and region. See the GIPHY Random Endpoint docs for details. ([developers.giphy.com](https://developers.giphy.com/docs/api/endpoint/?utm_source=openai))
npx -y keychains@latest curl "https://api.giphy.com/v1/gifs/random?api_key={{GIPHY_API_KEY}}&tag={{$tag}}&rating={{$rating}}&random_id={{$random_id}}&country_code={{$country_code}}®ion={{$region}}" \
-X GET \
-H "Accept: application/json" \
-H "Content-Type: application/json"