gif-search

Search and download GIFs from the Tenor API using curl and jq.

16|Updated Sep 22, 2026
One-click install
npx skills add https://github.com/igniteenow/robo --skill gif-search-igniteenow
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: gif-search
Source: https://github.com/igniteenow/robo/tree/main/skills/media/gif-search
Command: npx skills add https://github.com/igniteenow/robo --skill gif-search-igniteenow

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Finding and downloading GIFs for chat messages, reactions, or visual content normally requires manual browsing; this Skill retrieves GIF URLs and files directly from the Tenor API via the command line. ## Core Features & Use Cases - GIF Search: Query the Tenor API with keywords and retrieve GIF URLs in multiple formats (gif, tinygif, mp4, webm). - Direct Download: Fetch the top search result and save it as a local GIF file with curl. - Metadata Retrieval: Extract titles, preview URLs, and dimensions for each result using jq. - Use Case: You want to send a celebration GIF in a chat message. Run a Tenor search for "celebration", grab the tinygif URL, and embed it directly in markdown. ## Quick Start Search Tenor for a thumbs up GIF and give me the URL of the top result.

Frequently Asked Questions about gif-search

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search for GIFs using the Tenor API?▼

Send a GET request to https://tenor.googleapis.com/v2/search with parameters q (query), limit, and key. Pipe the JSON response through jq to extract GIF URLs from the results array under media_formats.

How to download a GIF from the command line with curl?▼

First query the Tenor search endpoint and extract the gif URL with jq, then run curl -sL on that URL with -o to save the file locally. URL-encode spaces in the query as plus signs.

What API key do I need for Tenor GIF search?▼

You need a TENOR_API_KEY environment variable set to a Google Cloud Console Tenor API key. The key is free with generous rate limits and can be obtained from the Google Tenor quickstart guide.

What media formats does the Tenor API return?▼

Each result includes gif, tinygif, mp4, tinymp4, webm, and nanogif formats under media_formats. Use tinygif for lightweight chat previews and gif for full quality downloads.

Why does my Tenor API search return no results?▼

Common causes are a missing or invalid TENOR_API_KEY, unencoded special characters in the query, or a restrictive contentfilter setting. Verify the key is exported and URL-encode the query string.