Feathery

Forms as flexible as code. We help product teams build best-in-class forms.

Go to site
Explore
/
Apps
/
Feathery

Feathery API Integrations

Build and run workflows using the Feathery 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 Feathery, you can build:

  • A social network for connecting with friends and family
  • A task manager to keep track of your to-do list
  • A note taking app to jot down ideas and thoughts
  • A photo sharing app to share moments with your friends
  • A weather app to track the forecast in your area
  • A messaging app to chat with your friends in real-time
  • A game to pass the time and have fun
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: {
    feathery: {
      type: "app",
      app: "feathery",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.feathery.io/api/user/`,
      headers: {
        "Token": `${this.feathery.$auth.api_key}`,
      },
    })
  },
})

Authentication

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

Copy your Feathery admin-level API key to connect Feathery to Pipedream and authenticate access.