gifs.so mascot, a lime animation frame winkinggifs.so
  • The GIF journal
  • Sponsor the stash
U
All guides
September 5, 2026·2 min read·By GIFs.so

GIFs.so API quickstart: search your first reaction GIF

Create a verified account, keep your API key on the server, and understand the first GIF search response.

APIs

GIFs.so exposes a curated reaction library through REST and MCP. For a first REST request, create an account, verify your email, and create an API key from the account settings. Access is currently free and sponsor-supported.

The key belongs on your server or in a local environment variable. Do not put it in a public frontend bundle or a screenshot of a terminal command.

Make a small search request

This shell example expects GIFS_API_KEY to be set in your local environment:

curl --get 'https://gifs.so/api/rest/gifs' \
  --data-urlencode 'query=happy' \
  --data-urlencode 'limit=10' \
  -H "x-api-key: $GIFS_API_KEY"

Search uses query, an optional category, limit, and offset. The page size is between 1 and 100; the default is 24. Start small while checking your integration.

A successful search returns items, total, nextOffset, and sponsors. Each GIF item includes its ID, title, description, dimensions, tags, source URL, thumbnail URL, GIF URL, and a nullable MP4 URL. Do not assume every result has a video rendition.

Add categories and pagination

Use GET /api/rest/categories for current category IDs and names. Use GET /api/rest/gifs/{id} when you need one known item. Do not construct an ID from its title.

For the next search page, pass the returned nextOffset as offset with the same query and category. Stop when it is null. Reset the offset whenever either search input changes.

Keep sponsor entries separate from GIF items and render them as labeled sponsored cards when integrating the picker. They are not alternate GIF records and should not be inserted into the organic result count.

Handle the first failures clearly

A 401 requires checking credentials and verified account access. A 429 requires backing off; it is not a reason to rotate keys. Limits are shared across an account: 120 authenticated requests per minute and 20,000 per day.

Consult the integration guide, OpenAPI, and llms.txt for the current API contract. The JavaScript example shows response validation, and the pagination guide covers changing queries while a request is in flight.

Find the right reaction.

A curated library, a free API, and an MCP server. Sign in with a verified account to get started.

Create an accountIntegration guide

Keep reading

APIsEngineering

Build a React GIF picker with predictable search state

Structure query state, pagination, cancellation, selection, and keyboard behavior before styling a GIF grid.

September 5, 2026·2 min read
APIsSearch

How to compare GIF API providers with a repeatable scorecard

Evaluate real query relevance, media support, limits, access terms, and operational behavior before committing to a provider.

September 5, 2026·2 min read
gifs.so mascot, a lime animation frame winkinggifs.so

5,537 reaction GIFs, sorted into 56 moods. For when you have nothing to say, and need to say it spectacularly.

The stash

  • Join the club
  • Sign in

Around here

  • The GIF journal
  • Sponsor the stash

Say hey

  • hello@gifs.so
© 2026 gifs.soMade for big feelings and very small attention spans.