Vercel

Vercel is the platform for frontend developers, providing the speed and reliability innovators need to create at the moment of inspiration.

Integrate the Vercel API with the Kaggle API

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

New Deployment from the Vercel API

Emit new event when a deployment is created

 
Try it
Cancel Deployment with the Vercel API

Cancel a deployment which is currently building. See the docs

 
Try it
Create Deployment with the Vercel API

Create a new deployment from a GitHub repository. See the docs

 
Try it
List Deployments with the Vercel API

List deployments under the account corresponding to the API token. See the docs

 
Try it

Overview of Vercel

Vercel provides an API that allows you to authenticate users and manage access
to your applications and services. With the Vercel API, you can easily build
an array of applications, from complete single-page applications to scalable
applications and services. Here are a few examples of what you can build with
Vercel's API:

  • SSO (Single Sign-On) solutions that securely authenticate users across
    multiple devices and applications
  • Secure access control solutions to protect sensitive data and services
  • APIs that provide easy access to third-party data
  • User registration and management tools
  • Content management solutions
  • Data analysis tools and applications
  • Back-end services for web applications
  • Customizable dashboards for web applications
  • Automated email notifications for applications and services

Connect Vercel

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: {
    vercel_token_auth: {
      type: "app",
      app: "vercel_token_auth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.vercel.com/www/user`,
      headers: {
        Authorization: `Bearer ${this.vercel_token_auth.$auth.personal_access_token}`,
      },
    })
  },
})

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: {
        "": ``,
      },
    })
  },
})