Warpcast

Warpcast is a client for Farcaster, a new type of social network.

Go to site
Explore
/
Apps
/
Warpcast

Warpcast API Integrations

Build and run workflows using the Warpcast 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
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    warpcast: {
      type: "app",
      app: "warpcast",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.warpcast.com/v2/me`,
      headers: {
        Authorization: `Bearer ${this.warpcast.$auth.app_bearer_token}`,
        "accept": `application/json`,
      },
    })
  },
})

Authentication

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

Application bearer tokens must be used to call API endpoints and can be requested with a Custody bearer token.

The Custody bearer token Replit demonstrates how a Custody Bearer Token can be generated and verified. Use your Custody bearer token to obtain your Application Bearer Token.

See full documentation.