Dribbble

Promotion and social networking platform for digital designers and creatives

Go to site
Explore
/
Apps
/
Dribbble

Dribbble API Integrations

Build and run workflows using the Dribbble 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 the Dribbble API, you can build applications that help designers and illustrators find inspiration, connect with other creatives, and share their work with the world.

Here are some examples of what you can build with the Dribbble API:

  • A platform for designers to share their work and get feedback from their peers
  • A social network for creatives to connect with each other and find new collaborators
  • A search engine for finding the best design talent from around the world
  • A portfolio site for showcasing the work of individual designers
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: {
    dribbble: {
      type: "app",
      app: "dribbble",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.dribbble.com/v2/user`,
      headers: {
        Authorization: `Bearer ${this.dribbble.$auth.oauth_access_token}`,
      },
    })
  },
})
Send Message (Advanced) with Discord Webhook API on New Shot Created from Dribbble API
Dribbble + Discord Webhook
 
Try it
Get Film with SWAPI - Star Wars API on New Shot Created from Dribbble API
Dribbble + SWAPI - Star Wars
 
Try it
Delete Record with Airtable API on New Shot Created from Dribbble API
Dribbble + Airtable
 
Try it
Send any HTTP Request with HTTP / Webhook API on New Shot Created from Dribbble API
Dribbble + HTTP / Webhook
 
Try it
Create Image with OpenAI (ChatGPT) API on New Shot Created from Dribbble API
Dribbble + OpenAI (ChatGPT)
 
Try it
New Shot Created from the Dribbble API

Emit new events when new shots are created

 
Try it

Authentication

Dribbble uses OAuth authentication. When you connect your Dribbble account, Pipedream will open a popup window where you can sign into Dribbble and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Dribbble API.

Pipedream requests the following authorization scopes when you connect your account:

OAuth Request Configurations:
  1. authorization
    GEThttps://dribbble.com/oauth/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}
  2. accessToken
    POSThttps://dribbble.com/oauth/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}