Kyvio

Kyvio's mission is to facilitate and accelerate the global society switch from a knowledge economy to an entrepreneurial economy by helping ppl to get started

Go to site

Kyvio API Integrations

Build and run workflows using the Kyvio API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

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: {
    kyvio: {
      type: "app",
      app: "kyvio",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.kyvio.$auth.subdomain}.kyvio.com/api/v1/subscribers`,
      headers: {
        Authorization: `Bearer ${this.kyvio.$auth.api_key}`,
      },
    })
  },
})

Authentication

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

To retrieve your API Key,

  • Navigate to your Kyvio account and sign in
  • Click on the dropdown menu on the top right
  • Go to “Kyvio API”

Your subdomain is 1234 if your Kyvio dashboard URL is https://1234.kyvio.com/panel/dashboard