action byautomata_post_contentpro_similar_text { label: "The /contentpro-similar-text endpoint accepts and arbitrary piece of text and returns similar articles and blogs written by companies." provider: byautomata method: POST path: "/contentpro-similar-text" encoding: json input: { type: "object" required: ["text"] properties: { text: { type: "string" description: "Any piece of text" } } } output: { type: "object" properties: { calls_per_month: { type: "string" } count_remaining: { type: "string" } data: { type: "array" items: { type: "object" properties: { article: { type: "object" properties: { link: { type: "string" } pubdate: { type: "string" } title: { type: "string" } } } company: { type: "object" properties: { companyName: { type: "string" } description: { type: "string" } employee: { type: "string" } industry: { type: "string" } linkedin: { type: "string" } twitter: { type: "string" } website: { type: "string" } } } snippets: { type: "object" properties: { description: { type: "array" items: { type: "string" } } text: { type: "array" items: { type: "string" } } title: { type: "array" items: { type: "string" } } } } } } } renewal_date: { type: "string" } } } }