Integrate the Kaggle API with the Better Proposals API

Setup the Kaggle API trigger to run a workflow which integrates with the Better Proposals API. Pipedream’s integration platform allows you to integrate Kaggle and Better Proposals remarkably fast. Free for developers.

return await require("@pipedreamhq/platform").axios(this, {
  url: `https://www.kaggle.com/api/v1/datasets/list`,
  auth: {
    username: `${auths.kaggle.username}`,
    password: `${auths.kaggle.api_key}`,
  },
  params: {
    "": ``,
  },
})
return await require("@pipedreamhq/platform").axios(this, {
  url: `https://api.betterproposals.io/settings/`,
  headers: {
    "Bptoken": `${auths.better_proposals.api_key}`,
  },
})

Read more here: Source link