List All Companies by Exchange

Retrieve a list of all companies on a given exchange. The set includes listed and delisted companies.

Supported exchanges: NYSE, NASDAQ, NYSEMKT, NYSEARCA, OTC, BATS, INDEX

API Endpoint

Send a GET HTTP request with the exchange as a path parameter to the following endpoint to retrieve a list of companies listed on the exchange:

https://api.sec-api.io/mapping/exchange/<EXCHANGE>

Replace <EXCHANGE> with an exchange from the list of supported exchanges.

Supported HTTP methods: GET

Response format: JSON

Example

Request: GET https://api.sec-api.io/mapping/exchange/nasdaq?token=YOUR_API_KEY

Response:

JSON
1 [
2 {
3 "name": "Aaon Inc",
4 "ticker": "AAON",
5 "cik": "824142",
6 "cusip": "000360206",
7 "exchange": "NASDAQ",
8 "isDelisted": false,
9 "category": "Domestic Common Stock",
10 "sector": "Basic Materials",
11 "industry": "Building Products & Equipment",
12 "sic": "3585",
13 "sicSector": "Manufacturing",
14 "sicIndustry": "Air-Cond & Warm Air Heatg Equip & Comm & Indl Refrig Equip",
15 "famaSector": "",
16 "famaIndustry": "Machinery",
17 "currency": "USD",
18 "location": "Oklahoma; U.S.A",
19 "id": "7414f59fa8ea1454fe8f18f54ee80a9e"
20 },
21 {
22 "name": "Admiralty Bancorp Inc",
23 "ticker": "AAAB",
24 "cik": "1066808",
25 "cusip": "007231103",
26 "exchange": "NASDAQ",
27 "isDelisted": true,
28 "category": "Domestic Common Stock",
29 "sector": "Financial Services",
30 "industry": "Banks - Regional",
31 "sic": "6022",
32 "sicSector": "Finance Insurance And Real Estate",
33 "sicIndustry": "State Commercial Banks",
34 "famaSector": "",
35 "famaIndustry": "Banking",
36 "currency": "USD",
37 "location": "Florida; U.S.A",
38 "id": "28db077d51302cd02d0e400086d94b3f"
39 },
40 {
41 "name": "Advanced Accelerator Applications SA",
42 "ticker": "AAAP",
43 "cik": "1611787",
44 "cusip": "00790T100",
45 "exchange": "NASDAQ",
46 "isDelisted": true,
47 "category": "ADR Common Stock",
48 "sector": "Healthcare",
49 "industry": "Biotechnology",
50 "sic": "2834",
51 "sicSector": "Manufacturing",
52 "sicIndustry": "Pharmaceutical Preparations",
53 "famaSector": "",
54 "famaIndustry": "Pharmaceutical Products",
55 "currency": "EUR",
56 "location": "France",
57 "id": "5971a249eeac5dc6a31314e014dd4ff1"
58 }
59 // ... more results
60 ]