Using giphy-react-native-sdk with giphy.com

TypeScript integration

✓ Official SDK
Install
npm install giphy-react-native-sdk
Quick start
import Giphy_react_native_sdk from 'giphy-react-native-sdk';

const client = new Giphy_react_native_sdk({ apiKey: "YOUR_API_KEY" });
Get GIFs by ID
curl \
  # append ?api_key=$API_KEY to the URL \
  https://api.giphy.com/v1/gifs
Random GIF
curl \
  # append ?api_key=$API_KEY to the URL \
  https://api.giphy.com/v1/gifs/random
Search GIFs
curl \
  # append ?api_key=$API_KEY to the URL \
  https://api.giphy.com/v1/gifs/search
SDK on GitHub 📄 API Docs
SDK
giphy-react-native-sdk
TypeScript
API
giphy.com
giphy.com
At a glance
Language TypeScript
Endpoints10
Base URLhttps://api.giphy.com/v1
✓ Official