Crowd.dev

Crowd.dev is the developer community data platform - Understand, grow, and leverage your developer community with zero hassle.

Go to site
Explore
/
Apps
/
Crowd.dev

Crowd.dev API Integrations

Build and run workflows using the Crowd.dev 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

Crowd.dev is a powerful API that enables you to easily build applications that work with the Crowd.dev platform. With the Crowd.dev API you can:

  • Build applications that allow users to post and manage projects
  • Build applications that allow users to browse and search for projects
  • Build applications that allow users to pledge money to projects
  • Build applications that allow users to manage their Crowd.dev account

The possibilities are endless! So what are you waiting for? Get started today!

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: {
    crowd_dev: {
      type: "app",
      app: "crowd_dev",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.crowd.dev/api/auth/me`,
      headers: {
        Authorization: `Bearer ${this.crowd_dev.$auth.bearer_token}`,
      },
    })
  },
})

Choose an API to Connect with Crowd.dev API

1
-
12
of
1000+
apps by most popular

Authentication

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

To connect Crowd.dev to your Pipedream account, you must first retrieve your bearer_token from their site here.