action byautomata_get_similar { label: "Send a company website to receive a list of companies related to them." provider: byautomata method: GET path: "/similar" encoding: json input: { type: "object" properties: { link: { type: "string" required: ["link"] properties: { link: { type: "string" description: "Any company website. Ex. apple.com" } } } page: { type: "string" required: ["page"] properties: { link: { type: "string" description: "Results are returned in batches of approximately 10 companies. Use the page parameter to page through results." } } } } required: ["link"] additionalProperties: false } output: { type: "object" properties: { calls_per_month: { type: "string" } companies: { type: "array" items: { type: "object" properties: { companyName: { type: "string" } description: { type: "string" } employee: { type: "string" } industry: { type: "string" } linkedin: { type: "string" } title: { type: "string" } twitter: { type: "string" } website: { type: "string" } } } } count_remaining: { type: "string" } input_company: { type: "object" properties: { companyName: { type: "string" } country: { type: "string" } employee: { type: "string" } industry: { type: "string" } linkedin: { type: "string" } twitter: { type: "string" } website: { type: "string" } } } renewal_date: { type: "string" } } } }