Skip to main content
GET
/
v1
/
registrar
/
tlds
/
supported
getSupportedTlds
import { Vercel } from "@vercel/sdk";

const vercel = new Vercel({
  bearerToken: "<YOUR_BEARER_TOKEN_HERE>",
});

async function run() {
  const result = await vercel.domainsRegistrar.getSupportedTlds({
    teamId: "team_1a2b3c4d5e6f7g8h9i0j1k2l",
  });

  console.log(result);
}

run();
[
  "<string>"
]

Authorizations

Authorization
string
header
required

Default authentication mechanism

Query Parameters

teamId
string
Example:

"team_1a2b3c4d5e6f7g8h9i0j1k2l"

Response

A list of the TLDs supported by Vercel.

I