action owler_get_v1_feed_url { label: "Get Feeds for given Company Websites" description: "The Feeds API provides a list of feeds and individual feed information for the given Company Websites 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/url" encoding: json input: { type: "object" properties: { category: { type: "string" } domain: { type: "string" } format: { type: "string" } limit: { type: "string" } pagination_id: { type: "string" } } required: ["domain"] additionalProperties: false } output: { type: "object" additionalProperties: true } }