Giphy

GIFs & Animated Stickers online

Integrate the Giphy API with the Go API

Setup the Giphy API trigger to run a workflow which integrates with the Go API. Pipedream's integration platform allows you to integrate Giphy and Go remarkably fast. Free for developers.

Search Gifs/Stickers with the Giphy API

Searches all GIPHY gifs or stickers for a word or phrase. See the docs here.

 
Try it
Run Go Code with the Go API

Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.

 
Try it
Translate a Word to a Gif/Sticker with the Giphy API

Translates or convert a word or phrase to the perfect Gif or Sticker using GIPHY's special sauce algorithm. See the docs here.

 
Try it
Upload a Gif with the Giphy API

Uploads a Gif or video file up to 100MB programmatically on GIPHY.com See the docs here.

 
Try it

Overview of Giphy

Using the Giphy API, you can build applications that:

  • Allow users to search for and browse GIFs
  • Embed GIFs in articles or blog posts
  • Create GIF user interfaces and animations
  • Automatically generate GIFs from images or video
  • And much more!

Connect Giphy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    giphy: {
      type: "app",
      app: "giphy",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `api.giphy.com/v1/gifs/random`,
      params: {
        api_key: `${this.giphy.$auth.api_key}`,
      },
    })
  },
})

Connect Go

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main

import (
	"fmt"

	pd "github.com/PipedreamHQ/pipedream-go"
)

func main() {
	// Access previous step data using pd.Steps
	fmt.Println(pd.Steps)

	// Export data using pd.Export
	data := make(map[string]interface{})
	data["name"] = "Luke"
	pd.Export("data", data)
}