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();

  console.log(result);
}

run();
[
  "<string>"
]

Authorizations

Authorization
string
header
required

Default authentication mechanism

Response

Success

The response is of type string[].

I