Alchemer

Enterprise Online Survey Software & Tools

Go to site
Explore
/
Apps
/
Alchemer

Alchemer API Integrations

Build and run workflows using the Alchemer 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

With the Alchemer API, you can build a wide variety of applications and integrations. Below are just a few examples of what you can do with the Alchemer API:

  • Build a custom report or dashboard to display your survey data in the way that you want
  • Create a survey-taking application that allows your users to take your surveys on the go
  • Embed your surveys into your website or blog to collect data from your visitors
  • Create an integration with your CRM or marketing automation platform to push survey data into those systems
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: {
    alchemer: {
      type: "app",
      app: "alchemer",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.alchemer.com/v5/account`,
      params: {
        api_token: `${this.alchemer.$auth.api_key}`,
        api_token_secret: `${this.alchemer.$auth.api_secret}`,
      },
    })
  },
})

Authentication

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

To obtain an API Key and API Secret Key administrative users can go to Security > API Access and click Create an API Key.