action cloudflare_pages_domains_get_domain { label: "Get domain" description: "Fetch a single domain." provider: cloudflare method: GET path: "/accounts/{account_id}/pages/projects/{project_name}/domains/{domain_name}" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } domain_name: { type: "string" description: "The domain name." } project_name: { type: "string" description: "Name of the project." } } required: ["account_id", "domain_name", "project_name"] additionalProperties: false } output: { type: "object" } }