imgbb

Free image hosting and sharing service

Integrate the imgbb API with the Formatting API

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

Upload picture with the imgbb API

Upload a picture to imgbb. See the docs here

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it

Overview of imgbb

The imgbb API offers a straightforward solution for uploading images to the imgbb platform. Once uploaded, images can be shared across the web with ease, thanks to the provided URL links. This opens up a world of possibilities for automating image storage and distribution workflows on Pipedream. Whether you're managing a content-heavy blog, streamlining an eCommerce site with dynamic product images, or automating social media postings, using the imgbb API with Pipedream can save time and reduce manual effort.

Connect imgbb

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: ``,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})