Skip to main content

Vercel

Vercel is a cloud platform for frontend developers and teams that specializes in deploying and hosting modern web applications, particularly those built with frameworks like Next.js, React, Vue, Angular, Svelte, and other JavaScript frameworks. The platform provides serverless deployment infrastructure, edge network capabilities, and continuous deployment from Git repositories. Vercel enables developers to deploy static sites, serverless functions, and full-stack applications with automatic scaling, SSL certificates, and global content delivery.

CategoryCloud
DirectionQuery source
Sign-inAPI Token
Query languagesSQLite
Tables7
Query templates20
Websitevercel.com

Before you start​

Huntbase signs in to Vercel with API Token. Create the credential in Vercel first, then keep it to hand for the Connect step.

  1. In Vercel, open your personal account Settings and open the Account Tokens page (vercel.com/account/tokens).
  2. Click Create, enter a descriptive name, and choose the scope of access from the dropdown. To query a team, choose that team.
  3. Click Create Token and copy the token. It isn't shown again.

For the vendor's own instructions, see Vercel access token guide.

tip

Use a dedicated, read-only credential for Huntbase where the product allows it. Huntbase only needs to read.

Connect Vercel​

  1. Go to Connections and click New connection, or click New connection on the Vercel product page.
  2. On Product, pick Vercel and choose the Owner.
  3. On Details, give the connection a Name and, optionally, a Description.
  4. On Connect, fill in the settings and credentials described below.
  5. On Verify, review the summary and click Create & check.

For everything else on the setup page — saving a draft, I'll do this later, and what each check result means — see Connections.

Settings​

Where your Vercel lives:

FieldRequiredNotes
TeamNoOptional. The team to query, such as mycompany. The token must be scoped to that team.

Credentials​

The only Method is API Token. Enter a Credential label (for example Production), then fill in:

FieldRequiredNotes
API TokenYesSecret — not shown again after you save it.

Query it​

Once connected, Vercel can serve these languages in a query tab, and Scout can use it when you ask in Auto:

LanguageUse it for
SQLiteSQL over the 7 tables listed below, alongside every other connected source.

Example: SQLite​

Get user information — Retrieve full profile information for all users in the account.

SELECT
*
FROM
vercel_user;

Vercel ships with 20 query templates. Find them in Library › Queries — see Query templates.

Tables​

Vercel adds 7 tables. Browse their columns from Schema in the query bar's ⋯ menu.

All 7 tables
TableContains
vercel_deploymentDeployments in the Vercel account.
vercel_dns_recordDNS records in the Vercel account.
vercel_domainDomains in the Vercel account.
vercel_projectProjects in the Vercel account.
vercel_secretSecrets in the Vercel account.
vercel_teamTeams in the Vercel account.
vercel_userThe currently authenticated user making the request.

Next steps​