Map a CIK to Company Details
Resolve and map a Central Index Key (CIK) to standardized company information, such as ticker, CUSIP, company name, exchange, sector and more.
API Endpoint
Send a GET
HTTP request with the CIK as a path parameter to the follwoing endpoint to retrieve company details:
https://api.sec-api.io/mapping/cik/<CIK>
Replace <CIK>
with the CIK of the entity you want to retrieve the ticker, CUSIP, exchange and other company details for. The CIK is a unique identifier assigned to entities filing with the SEC. Mapping of CIKs with leading and non-leading zeros are supported. For example, 0000927355
and 927355
return the same response.
Supported HTTP methods: GET
Response format: JSON
Example
Request: GET
https://api.sec-api.io/mapping/cik/789019?token=YOUR_API_KEY
Response:
JSON
1
[
2
{
3
"name": "MICROSOFT CORP",
4
"ticker": "MSFT",
5
"cik": "789019",
6
"cusip": "594918104",
7
"exchange": "NASDAQ",
8
"isDelisted": false,
9
"category": "Domestic Common Stock",
10
"sector": "Technology",
11
"industry": "Software - Infrastructure",
12
"sic": "7372",
13
"sicSector": "Services",
14
"sicIndustry": "Services-Prepackaged Software",
15
"famaSector": "",
16
"famaIndustry": "Business Services",
17
"currency": "USD",
18
"location": "Washington; U.S.A",
19
"id": "0f08a6a6742dc4148badfef6977406cf"
20
}
21
]