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 Websites

GET
/v1/feed/url
FeedAPI
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.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.owler.com//v1/feed/url?domain='
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
format
string 
optional
Format of the response content - json (by default if not specified), xml
domain
array[string]
required
Company Websites separated by comma (Maximum of 10 Company Websites)
limit
string 
optional
Number of results to be displayed - 10 (by default, if not specified) to 100
pagination_id
string 
optional
Pass pagination_id as blank in the first API request. The API response will return the latest feeds along with the next pagination_id which can be passed in the subsequent API request to get the next set of feeds. Repeat this process until needed or till the pagination_id returned is blank
category
array[string]
optional
Categories separated by comma. If not specified, will search against all categories

Responses

🟢200Feeds Data
application/json
Body
feeds
array[object (FeedsVO) {10}] 
optional
category
string 
optional
company
object (CompanyBasicVO) 
optional
enclosure_image
string 
optional
feed_date
string 
optional
id
string 
optional
owler_feed_url
string 
optional
publisher_logo
string 
optional
publisher_name
string 
optional
source_url
string 
optional
title
string 
optional
pagination_id
string 
optional
🟠400Invalid Parameters
🟠403Authentication Failed
🟠429Too Many Requests
🔴500Internal Server Error
Modified at 2023-08-15 10:07:15
Previous
Get Feeds for given Company Ids
Built with