Skip to main content

Companies

List Companies

Endpoint: /companies

This endpoint returns a list of all the available companies for which we have SEC filings data. You can use the company's name or ticker symbol to retrieve filings data for that company.

HTTP Request

GET /companies

Query Parameters

ParameterRequiredDescription
NoneNo

Response

The response will be a JSON object containing an array of company objects, each with the following properties:

PropertyTypeDescription
namestringThe name of the company.
tickerstringThe stock ticker symbol of the company.
cikstringThe Central Index Key (CIK) of the company. This is an identifier used by the SEC
sectorstringThe sector of the company.
industrystringThe industry of the company.
countrystringThe country where the company is located.

Example

GET /companies
{
"companies": [
{
"name": "Apple Inc.",
"ticker": "AAPL",
"cik": "0000320193",
"exchange": "Nasdaq",
"country": "United States"
},
{
"name": "Amazon.com Inc.",
"ticker": "AMZN",
"cik": "0001018724",
"exchange": "Nasdaq",
"country": "United States"
},
{
"name": "Microsoft Corporation",
"ticker": "MSFT",
"cik": "0000789019",
"exchange": "Nasdaq",
"country": "United States"
},
...
]
}