action cloudflare_domain_intelligence_get_multiple_domain_details { label: "Get Multiple Domain Details" description: "Returns security details and statistics about multiple domains in a\nsingle request.\n\n**Behavior change — domain ranking is becoming opt-in.** This endpoint\npreviously included domain ranking data in every response and accepted\na `skip_ranking=true` query parameter to opt out. That parameter is\nbeing deprecated and ranking will no longer be returned by default.\nCallers that want ranking data must pass `include_ranking=true`. The\n`skip_ranking` parameter will be silently ignored once the change ships.\n" provider: cloudflare method: GET path: "/accounts/{account_id}/intel/domain/bulk" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } domain: { type: "array" items: { type: "string" } } include_ranking: { type: "boolean" } skip_ranking: { type: "boolean" } } required: ["account_id"] additionalProperties: false } output: { type: "object" } }