Crowd.dev is the developer community data platform - Understand, grow, and leverage your developer community with zero hassle.
Go to siteCrowd.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:
The possibilities are endless! So what are you waiting for? Get started today!
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}`,
},
})
},
})
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.