Giant Context
Knowledge BaseDevelopers
Join the Waitlist

Project Domains

Manage project domains and DNS verification.


GET

Get domain verification instructions

/organizations/{id}/projects/{projectId}/domains/{domainId}/verification

Retrieves the DNS verification instructions for the specified custom domain. Returns the exact DNS record (type, name, and value) that must be added to the domain's DNS configuration at the domain registrar to prove ownership. This is required before the domain can be verified and used for serving content. The instructions include the CNAME or TXT record details needed for the verification process.

Parameters
idRequired
path · stringOrganization ID
projectIdRequired
path · stringProject ID
domainIdRequired
path · stringDomain ID
SDK
import { createGiantContext } from "@giantcontext/sdk-typescript";
const gc = createGiantContext({ apiKey: process.env.GIANTCONTEXT_API_KEY! });
const { data: instructions } = await gc.projectDomains.getDomainVerificationInstructions({  id: "example_id",  projectId: "example_project_id",  domainId: "example_domain_id"});
GET

Get all domains for a project

/organizations/{id}/projects/{projectId}/domains

Returns a comprehensive list of all domains (both auto-generated and custom) across all apps within the specified project. Each domain entry includes its hostname, verification status, whether it is generated or custom, whether it is the primary domain for its app, and the associated app name and slug. Domains are grouped by app and sorted with generated domains first and primary domains prioritized.

Parameters
idRequired
path · stringOrganization ID
projectIdRequired
path · stringProject ID
SDK
import { createGiantContext } from "@giantcontext/sdk-typescript";
const gc = createGiantContext({ apiKey: process.env.GIANTCONTEXT_API_KEY! });
const { data: projectDomains } = await gc.projectDomains.listProjectDomains({  id: "example-id",  projectId: "example-project-id"});

Built byHuman
This content was designed and written by a human.
    Socials
    • Discord
    • BlueSky

    © 2026 Giant Context
    PrivacyTerms of UseCookie Policy