Miestro

The ultimate course platform to help you easily your own online courses in just 5 steps.

Go to site
Explore
/
Apps
/
Miestro

Miestro API Integrations

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

The Miestro API can be used to create a variety of applications, including:

  • Location-based applications
  • Messaging applications
  • Social networking applications
  • Gaming applications
  • Augmented reality applications
  • 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: {
    miestro: {
      type: "app",
      app: "miestro",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.miestro.com/api/v1.0/users`,
      headers: {
        "X-Forward-Api-Key": `${this.miestro.$auth.api_key}`,
        "X-Forward-Api-Secret": `${this.miestro.$auth.api_secret}`,
      },
    })
  },
})

Authentication

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

To get your Miestro API Key and Secret, log into your Miestro account, click Settings from the menu on the left, then "API".