action byautomata_get_search { label: "Send search terms to receive the most relevant companies along with text snippets." provider: byautomata method: GET path: "/search" encoding: json input: { type: "object" properties: { page: { type: "string" required: ["page"] properties: { link: { type: "string" description: "Results are returned in batches of approximately 15 companies. Use the page parameter to page through results." } } } terms: { type: "string" required: ["terms"] properties: { link: { type: "string" description: "Comma separated list of search terms. Ex. terms=cloud+computing,enterprise,security" } } } } required: ["terms"] 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" } snippets: { type: "array" items: { type: "object" properties: { description: { type: "array" items: { type: "string" } } text: { type: "array" items: { type: "string" } } title: { type: "array" items: { type: "string" } } } } } title: { type: "string" } twitter: { type: "string" } website: { type: "string" } } } } count_remaining: { type: "string" } renewal_date: { type: "string" } } } }