Map a Ticker to Company Details

Resolve and map a ticker to standardized company information, such as CIK, CUSIP, company name, exchange, sector, industry and more.

API Endpoint

Send a GET HTTP request with the ticker as a path parameter to the follwoing endpoint to retrieve company details:

https://api.sec-api.io/mapping/ticker/<TICKER>

Replace <TICKER> with the ticker of the entity you want to retrieve the CIK, CUSIP, exchange and other company details for. Lower case and upper case tickers are supported. For example, TSLA and tsla return the same result.

By default, the Mapping API returns all companies that include the requested ticker in the ticker field. For example, looking up IBM returns multiple matches, including IBMD, IBMF and IBMH. If you only want to retrieve exact matches, use ^ as prefix, and $ as suffix. For example, /ticker/^IBM$ only returns the exact match for IBM.

Supported HTTP methods: GET

Response format: JSON

Examples

Request: GET https://api.sec-api.io/mapping/ticker/tsla?token=YOUR_API_KEY

Response:

JSON
1 [
2 {
3 "name": "Tesla Inc",
4 "ticker": "TSLA",
5 "cik": "1318605",
6 "cusip": "88160R101",
7 "exchange": "NASDAQ",
8 "isDelisted": false,
9 "category": "Domestic Common Stock",
10 "sector": "Consumer Cyclical",
11 "industry": "Auto Manufacturers",
12 "sic": "3711",
13 "sicSector": "Manufacturing",
14 "sicIndustry": "Motor Vehicles & Passenger Car Bodies",
15 "famaSector": "",
16 "famaIndustry": "Automobiles and Trucks",
17 "currency": "USD",
18 "location": "California; U.S.A",
19 "id": "e27d6e9606f216c569e46abf407685f3"
20 }
21 ]

Request: GET https://api.sec-api.io/mapping/ticker/^ibm$?token=YOUR_API_KEY

Response:

JSON
1 [
2 {
3 "name": "International Business Machines Corp",
4 "ticker": "IBM",
5 "cik": "51143",
6 "cusip": "459200101",
7 "exchange": "NYSE",
8 "isDelisted": false,
9 "category": "Domestic Common Stock",
10 "sector": "Technology",
11 "industry": "Information Technology Services",
12 "sic": "3570",
13 "sicSector": "Manufacturing",
14 "sicIndustry": "Computer & Office Equipment",
15 "famaSector": "",
16 "famaIndustry": "Computers",
17 "currency": "USD",
18 "location": "New York; U.S.A",
19 "id": "280dc59ae8c689897d62c6df3ac78c8f"
20 }
21 ]