action cloudflare_domain_intelligence_get_domain_details { label: "Get Domain Details" description: "Gets security details and statistics about a domain." provider: cloudflare method: GET path: "/accounts/{account_id}/intel/domain" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } domain: { type: "string" } skip_dns: { type: "boolean" } skip_ranking: { type: "boolean" } } required: ["account_id"] additionalProperties: false } output: { type: "object" } }