Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 802 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 802 Bytes

RESTyped typings for the Giphy API

Quickly and easily use the wonderful Giphy API in TypeScript with type checking for URL endpoints and query params!

How to use it

npm install restyped-giphy-api

Then use a REST client that supports RESTyped, like restyped-axios.

Example

import axios from 'restyped-axios'
import { GiphyAPI } from 'restyped-giphy-api'

const client = axios.create<GiphyAPI>({baseURL: 'http://api.giphy.com/v1'})

client.request({
  url: '/gifs/search',
  params: {
    api_key: 'abc123',
    q: 'zero effort'
  }
}).then((res) => {
  return res.data.data[0].images.fixed_height.url
})