action cloudflare_radar_get_tld_details { label: "Get TLD details" description: "Retrieves the requested TLD information." provider: cloudflare method: GET path: "/radar/tlds/{tld}" encoding: json input: { type: "object" properties: { format: { type: "string" description: "Format in which results will be returned." enum: ["JSON", "CSV"] } tld: { type: "string" description: "Top-level domain." } } required: ["tld"] additionalProperties: false } output: { type: "object" required: ["result", "success"] properties: { result: { type: "object" required: ["tld"] properties: { tld: { type: "object" required: ["manager", "tld", "type"] properties: { manager: { type: "string" description: "The organization that manages the TLD." } tld: { type: "string" description: "The actual TLD." } type: { type: "string" description: "The type of TLD." } } } } } success: { type: "boolean" } } } }