with Akkio and Dribbble?
Makes a prediction based on the input props. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
akkio: {
type: "app",
app: "akkio",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.akkio.com/v1/datasets`,
params: {
api_key: `${this.akkio.$auth.api_key}`,
},
})
},
})
The Dribbble API unlocks the design world of Dribbble, letting you tap into a community of graphic designers, illustrators, and artists. By integrating with the API via Pipedream, you can automate tasks like tracking user stats, exploring popular shots, and posting updates automatically. With Pipedream's no-code platform, you can connect Dribbble to hundreds of other apps to streamline your design workflow, get insights, and engage with the design community.
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}`,
},
})
},
})