action cloudflare_registrar_domains_get_domain { label: "Get domain" description: "Show individual domain." provider: cloudflare method: GET path: "/accounts/{account_id}/registrar/domains/{domain_name}" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier" } domain_name: { type: "string" description: "Fully qualified domain name (FQDN) including the extension\n(e.g., `example.com`, `mybrand.app`). The domain name uniquely\nidentifies a registration — the same domain cannot be registered\ntwice, making it a natural idempotency key for registration requests.\n" } } required: ["account_id", "domain_name"] additionalProperties: false } output: { type: "object" } }