Algorithmia

Algorithmia is community algorithm development

Go to site
Explore
/
Apps
/
Algorithmia

Algorithmia API Integrations

Build and run workflows using the Algorithmia 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 Algorithmia API to build programs that perform a variety of tasks, including:

  • Machine learning algorithms
  • Data analysis algorithms
  • Natural language processing algorithms
  • Computer vision algorithms
  • Robotics algorithms
  • Optimization algorithms
  • And more!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    algorithmia: {
      type: "app",
      app: "algorithmia",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      method: "post",
      url: `https://api.algorithmia.com/v1/algo/demo/Hello/`,
      headers: {
        "Authorization": `Simple ${this.algorithmia.$auth.YOUR_API_KEY}`,
      },
    })
  },
})

Choose an API to Connect with Algorithmia API

1
-
12
of
1000+
apps by most popular

Authentication

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

API Key management in Algoirthmia is available under the bottom left menu with the Profile icon > Manage API Keys. There's extensive documentation on configuring API Keys at the Developer Center. API Documentation contains detailed info for authenticating requests to the API.