imgbb

Free image hosting and sharing service

Go to site

imgbb API Integrations

Build and run workflows using the imgbb API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

You can use the imgbb API to build a number of different things, including:

  • A simple image hosting service
  • A image sharing service
  • An image editing service
  • A photoblogging platform
  • And much more!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    imgbb: {
      type: "app",
      app: "imgbb",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      method: "post",
      url: `https://api.imgbb.com/1/upload`,
      params: {
        key: `${this.imgbb.$auth.api_key}`,
        image: `R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7`,
        name: ``,
      },
    })
  },
})
Upload picture with imgbb API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + imgbb
 
Try it
Upload picture with imgbb API on New Item in Feed from RSS API
RSS + imgbb
 
Try it
Upload picture with imgbb API on New Message from Discord API
Discord + imgbb
 
Try it
Upload picture with imgbb API on New Message In Channels from Slack API
Slack + imgbb
 
Try it
Upload picture with imgbb API on New Message in Channel from Discord Bot API
Discord Bot + imgbb
 
Try it
Upload picture with the imgbb API

Upload a picture to imgbb. See the docs here

 
Try it

Authentication

imgbb uses API keys for authentication. When you connect your imgbb account, Pipedream securely stores the keys so you can easily authenticate to imgbb APIs in both code and no-code steps.

The ImgBB API Key is available at their API documentation located in the About menu on the top left, API option.