gif-search

Installation
SKILL.md

GIF Search

Overview

Search for GIFs using Tenor or Giphy APIs and download them for sharing.

Tenor (free tier, no key required for basic)

Search

# Basic search (Tenor v2 API)
curl -s "https://tenor.googleapis.com/v2/search?q=thumbs+up&limit=5&key=${TENOR_API_KEY:-AIzaSyA...}" \
  | jq -r '.results[].media_formats.gif.url'

Download

url=$(curl -s "https://tenor.googleapis.com/v2/search?q=celebration&limit=1&key=${TENOR_API_KEY}" \
  | jq -r '.results[0].media_formats.gif.url')
Related skills
Installs
3
GitHub Stars
7
First Seen
Mar 5, 2026