Owler
  1. CompetitorPremiumAPI
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. CompetitorPremiumAPI

Get Competitor information by Id

GET
/v1/company/competitorpremium/id/{companyId}
CompetitorPremiumAPI
The Competitors API provides basic information about all competitors of a given company Id
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.owler.com//v1/company/competitorpremium/id/'
Response Response Example
200 - Example 1
{
    "competitor": [
        {
            "company_id": 0,
            "logo_url": "string",
            "name": "string",
            "profile_url": "string",
            "score": 0,
            "short_name": "string",
            "website": "string"
        }
    ],
    "pagination_id": "string"
}

Request

Path Params
companyId
string 
required
Company Id
Query Params
pagination_id
string 
optional
Pass pagination_id as * in the first API request. The API response will return top competitors along with the next pagination_id which can be passed in the subsequent API request to get the next set of competitors. Repeat this process until needed or till the pagination_id returned is blank. Note:Every response will have maximum of 50 competitors.
format
string 
optional
Format of the response content - json (by default if not specified), xml

Responses

🟢200Competitors Data
application/json
Body
competitor
array[object (CompetitorBasicVO) {7}] 
optional
company_id
integer <int64>
required
logo_url
string 
required
name
string 
required
profile_url
string 
required
score
integer <int64>
required
short_name
string 
optional
website
string 
required
pagination_id
string 
optional
🟠400Invalid Parameters
🟠403Authentication Failed
🟠404Resource Not Found
🟠429Too Many Requests
🔴500Internal Server Error
Modified at 2023-08-15 10:07:15
Previous
Get Competitor information by URL
Next
Get Competitor information by Url
Built with