action cloudflare_workers_domains_get { label: "Get Domain" description: "Gets information about a domain." provider: cloudflare method: GET path: "/accounts/{account_id}/workers/domains/{domain_id}" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } domain_id: { type: "string" description: "ID of the domain." } } required: ["account_id", "domain_id"] additionalProperties: false } output: { type: "object" } }