What do you want to automate

with Channable and Currents API?

Prompt, edit and deploy AI agents that connect to Channable, Currents API and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
New Stock Update Created from the Channable API

Emit new event when a new stock update is created. See the documentation

 
Try it
Stock Update Updated from the Channable API

Emit new event when a stock update is updated. See the documentation

 
Try it
List Stock Updates with the Channable API

List stock updates for a company and project. See the documentation

 
Try it
Update Stock Update with the Channable API

Update a stock update for a company and project. See the documentation

 
Try it
Integrate the Channable API with the Currents API API
Setup the Channable API trigger to run a workflow which integrates with the Currents API API. Pipedream's integration platform allows you to integrate Channable and Currents API remarkably fast. Free for developers.

Connect Channable

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: {
    channable: {
      type: "app",
      app: "channable",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.channable.com/v2/companies/${this.channable.$auth.company_id}/projects/${this.channable.$auth.project_id}/orders`,
      headers: {
        Authorization: `Bearer ${this.channable.$auth.api_token}`,
      },
    })
  },
})

Connect Currents API

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    currents_api: {
      type: "app",
      app: "currents_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.currentsapi.services/v1/search?language=us&keywords=amazon&apiKey=${this.currents_api.$auth.api_token}`,
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo