action owler_get_v1_feed { label: "Get Feeds for given Company Ids" description: "The Feeds API provides a list of feeds and individual feed information for the given Company Ids and Category. By default the API returns the latest 10 feeds available unless the limit is specified. The maximum result is restricted to 100 feeds per API request." provider: owler method: GET path: "/v1/feed" encoding: json input: { type: "object" properties: { category: { type: "string" } company_id: { type: "string" } format: { type: "string" } limit: { type: "string" } pagination_id: { type: "string" } } required: ["company_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }