action apispot_domain_rank { label: "domainRank" description: "Check domain rank (authority)." provider: apispot method: GET path: "/domains/{domain}/rank" encoding: json input: { type: "object" properties: { domain: { type: "string" } } required: ["domain"] additionalProperties: false } output: { type: "object" properties: { rank: { type: "number" } } } }