Owler
  1. FeedAPI
Owler
  • CompanyAPI
    • Basic Search Company by Ticker or Website or Name or PermID
      GET
    • Fuzzy Search Company by Name or Address or Phone
      GET
    • Get Company by Id
      GET
    • Search Company by Ticker or Website or Name or PermID
      GET
    • Get Company by URL
      GET
  • CompetitorAPI
    • Get Competitor information by Id
      GET
    • Get Competitor information by URL
      GET
  • CompetitorPremiumAPI
    • Get Competitor information by Id
      GET
    • Get Competitor information by Url
      GET
  • CompanyPremiumAPI
    • Get Complete Company Info by Id
      GET
    • Get Basic Company Info by Url
      GET
  • FeedAPI
    • Get Feeds for given Company Ids
      GET
    • Get Feeds for given Company Websites
      GET
  1. FeedAPI

Get Feeds for given Company Ids

GET
/v1/feed
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.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.owler.com//v1/feed?company_id='
Response Response Example
200 - Example 1
{
    "feeds": [
        {
            "category": "string",
            "company": {
                "company_id": 0,
                "logo_url": "string",
                "name": "string",
                "profile_url": "string",
                "short_name": "string",
                "website": "string"
            },
            "enclosure_image": "string",
            "feed_date": "string",
            "id": "string",
            "owler_feed_url": "string",
            "publisher_logo": "string",
            "publisher_name": "string",
            "source_url": "string",
            "title": "string"
        }
    ],
    "pagination_id": "string"
}

Request

Query Params

Responses

🟢200Feeds Data
application/json
Body

🟠400Invalid Parameters
🟠403Authentication Failed
🟠429Too Many Requests
🔴500Internal Server Error
Modified at 2023-08-15 10:07:15
Previous
Get Basic Company Info by Url
Next
Get Feeds for given Company Websites
Built with