action botify_get_links_top_domains { label: "Top domains" description: "Top domains" provider: botify method: GET path: "/analyses/{username}/{project_slug}/{analysis_slug}/features/top_domains/domains" encoding: json input: { type: "object" properties: { page: { type: "integer" } size: { type: "integer" } } additionalProperties: false } output: { type: "object" properties: { count: { type: "integer" } next: { type: "string" } page: { type: "integer" } previous: { type: "string" } results: { type: "array" items: { type: "object" required: ["follow_links", "nofollow_links", "domain", "follow_samples", "nofollow_samples", "unique_follow_links", "unique_nofollow_links"] properties: { domain: { type: "string" } follow_links: { type: "integer" format: "int64" } follow_samples: { type: "array" items: { type: "object" required: ["url", "sources", "unique_links"] properties: { sources: { type: "array" items: { type: "string" } } unique_links: { type: "integer" format: "int64" } url: { type: "string" } } } } nofollow_links: { type: "integer" format: "int64" } nofollow_samples: { type: "array" items: { type: "object" required: ["url", "sources", "unique_links"] properties: { sources: { type: "array" items: { type: "string" } } unique_links: { type: "integer" format: "int64" } url: { type: "string" } } } } unique_follow_links: { type: "integer" format: "int64" } unique_nofollow_links: { type: "integer" format: "int64" } } } } size: { type: "integer" } } } }