Faire

Your one-stop shop for wholesale. Shop over 85,000 independent brands, all in one place.

Go to site

Faire API Integrations

Build and run workflows using the Faire 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: {
    faire: {
      type: "app",
      app: "faire",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.faire.com/api/v1/products`,
      headers: {
        "X-FAIRE-ACCESS-TOKEN": `${this.faire.$auth.access_token}`,
      },
    })
  },
})

Authentication

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

To connect your Faire account to Pipedream,

  • Send an email to integrations.support@faire.com and ask them for your API Access Token
  • Once they share it with you, paste that token below