Company Docs

Get company document keywords

Get a company document keywords


GET /company-docs-v1/keywords

ParameterTypeDataTypeDescription
bloomberg_tickerquerystringFilter to one or more bloomberg tickers (comma-separated)
isinquerystringFilter to one or more ISINs (comma-separated)
cusipquerystringFilter to one or more CUSIPs (comma-separated)
ricquerystringFilter to one or more RICs (comma-separated)
permidquerystringFilter to one or more PermIDs (comma-separated)
searchquerystringFilter keywords by name
include_delistedquerybooleanWhether to include delisted equities (default: true)
company_rollupquerybooleanWhether to rollup to all company equities (default: true)
pagequeryintegerThe page of results to return
page_sizequeryintegerThe size of pages to return (default: 100, min: 10, max: 100)

NOTE

  • At least one equity identifier is required
  • Only one identifier should be used per request

Request

https://premium.aiera.com/api/company-docs-v1/keywords?bloomberg_ticker=AAPL:US

Response

{
    "pagination": {
        "total_count": 500,
        "current_page": 1,
        "total_pages": 5,
        "page_size": 100
    },
    "data": {
      "financial results": 18981,
      "financial performance": 15857,
      "financial statements": 13289,
      "sustainability": 12830,
      "risk management": 9470,
      "earnings": 9449,
      "corporate governance": 9142,
      "securities": 8919,
      "compliance": 8790,
      "cash flow": 8723,
      "net income": 8347,
      "beneficial ownership": 7961,
      "revenue": 7477,
      "revenue growth": 7093,
      "Form 4": 6725,
      "common stock": 5717,
      "board of directors": 5656,
      "annual report": 5581,
      "EBITDA": 5462,
      "investment": 5316,
      "shareholders": 5300,
      "acquisition": 5112,
      ...
    }
}

Code Samples

Bash

curl --request GET \
  --url 'https://premium.aiera.com/api/company-docs-v1/keywords' \
  --header 'X-API-Key: xxx'

Python

import requests
requests.request("GET", "https://premium.aiera.com/api/company-docs-v1/keywords", headers={"X-API-Key": "xxx"})
Previous
Get Company Doc Categories