1.0.1 • Published 7 years ago

restyped-giphy-api v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

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
})
1.0.1

7 years ago

1.0.0

7 years ago