Kaggle

Your Machine Learning and Data Science Community

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.

Overview of Kaggle

With the Kaggle API, you can:

  • Download datasets
  • Upload datasets
  • Create new datasets
  • Join competitions
  • View competition leaderboards
  • View user profiles
  • And more!

Connect Kaggle

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    kaggle: {
      type: "app",
      app: "kaggle",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.kaggle.com/api/v1/datasets/list`,
      auth: {
        username: `${this.kaggle.$auth.username}`,
        password: `${this.kaggle.$auth.api_key}`,
      },
      params: {
        "": ``,
      },
    })
  },
})

Overview of Better Proposals

With the Better Proposals API, you can easily generate PDF proposals with your own branding, automatically calculate prices and taxes based on input from your customer, fetch data from your CRM, and much more.

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

  • A proposal generation tool for your sales team
  • An estimate calculator for your customers
  • A document management system for your proposal process
  • An integration with your CRM to automatically generate proposals
  • A workflow tool to help you manage your proposal process

Connect Better Proposals

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: {
    better_proposals: {
      type: "app",
      app: "better_proposals",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.betterproposals.io/settings/`,
      headers: {
        "Bptoken": `${this.better_proposals.$auth.api_key}`,
      },
    })
  },
})