Skip to main content
GET
/
v1
/
registrar
/
domains
/
{domain}
/
contact-info
/
schema
getContactInfoSchema
import { Vercel } from "@vercel/sdk";

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

async function run() {
  const result = await vercel.domainsRegistrar.getContactInfoSchema({
    domain: "tricky-issue.name",
  });

  console.log(result);
}

run();
{}

Authorizations

Authorization
string
header
required

Default authentication mechanism

Path Parameters

domain
string
required

Response

Success

The response is of type object.

I