Iterate creates simple surveys for startups to get feedback needed to build better products and make better decisions.
Go to siteTheIterate API enables you to quickly and easily build custom applications on top of theIterate platform.Using theIterate API, you can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
iterate: {
type: "app",
app: "iterate",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://iteratehq.com/api/v1/surveys`,
params: {
access_token: `${this.iterate.$auth.api_key}`,
},
})
},
})
Iterate uses API keys for authentication. When you connect your Iterate account, Pipedream securely stores the keys so you can easily authenticate to Iterate APIs in both code and no-code steps.
Every request against Iterate requires an API Key. You can find your API Key on your settings page.