action vercel_get_domain { label: "Get Information for a Single Domain" description: "Get information for a single domain in an account or team." provider: vercel method: GET path: "/v5/domains/{domain}" encoding: json input: { type: "object" properties: { domain: { type: "string" description: "The name of the domain." } teamId: { type: "string" } } required: ["domain"] additionalProperties: false } output: { type: "object" required: ["domain"] properties: { domain: { type: "object" required: ["boughtAt", "createdAt", "creator", "expiresAt", "id", "intendedNameservers", "name", "nameservers", "serviceType", "suffix", "verified"] properties: { boughtAt: { type: ["number", "null"] description: "If it was purchased through Vercel, the timestamp in milliseconds when it was purchased." } createdAt: { type: "number" description: "Timestamp in milliseconds when the domain was created in the registry." } creator: { type: "object" description: "An object containing information of the domain creator, including the user's id, username, and email." required: ["email", "id", "username"] properties: { customerId: { type: ["string", "null"] } email: { type: "string" } id: { type: "string" } isDomainReseller: { type: "boolean" } username: { type: "string" } } } customNameservers: { type: "array" description: "A list of custom nameservers for the domain to point to. Only applies to domains purchased with Vercel." items: { type: "string" } } expiresAt: { type: ["number", "null"] description: "Timestamp in milliseconds at which the domain is set to expire. `null` if not bought with Vercel." } id: { type: "string" description: "The unique identifier of the domain." } intendedNameservers: { type: "array" description: "A list of the intended nameservers for the domain to point to Vercel DNS." items: { type: "string" } } name: { type: "string" description: "The domain name." } nameservers: { type: "array" description: "A list of the current nameservers of the domain." items: { type: "string" } } orderedAt: { type: "number" description: "Timestamp in milliseconds at which the domain was ordered." } renew: { type: "boolean" description: "Indicates whether the domain is set to automatically renew." } serviceType: { type: "string" description: "The type of service the domain is handled by. `external` if the DNS is externally handled, `zeit.world` if handled with Vercel, or `na` if the service is not available." enum: ["zeit.world", "external", "na"] } suffix: { type: "boolean" } transferStartedAt: { type: "number" description: "If transferred into Vercel, timestamp in milliseconds when the domain transfer was initiated." } transferredAt: { type: ["number", "null"] description: "Timestamp in milliseconds at which the domain was successfully transferred into Vercel. `null` if the transfer is still processing or was never transferred in." } verified: { type: "boolean" description: "If the domain has the ownership verified." } } } } } }