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
| Parameter | Required | Description |
|---|---|---|
| None | No |
Response
The response will be a JSON object containing an array of company objects, each with the following properties:
| Property | Type | Description |
|---|---|---|
name | string | The name of the company. |
ticker | string | The stock ticker symbol of the company. |
cik | string | The Central Index Key (CIK) of the company. This is an identifier used by the SEC |
sector | string | The sector of the company. |
industry | string | The industry of the company. |
country | string | The 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"
},
...
]
}