Map a CUSIP to Company Details
Resolve and map a CUSIP identifier to standardized company information, such as ticker, CIK, company name, exchange, sector, industry and more.
API Endpoint
Send a GET
HTTP request with the CUSIP as a path parameter to the follwoing endpoint to retrieve company details:
https://api.sec-api.io/mapping/cusip/<CUSIP>
Replace <CUSIP>
with the CUSIP of the security you want to retrieve the ticker, CIK, exchange and other company details for. Multiple CUSIPs can be linked to one company. For example, looking up 054748108
returns the same result as looking up 92931L302
as both CUSIPs are linked to AYRO Inc.
Supported HTTP methods: GET
Response format: JSON
Example
Request: GET
https://api.sec-api.io/mapping/cusip/92931L302?token=YOUR_API_KEY
Response:
JSON
1
[
2
{
3
"name": "AYRO Inc",
4
"ticker": "AYRO",
5
"cik": "1086745",
6
"cusip": "054748108 92931L302 92931L401 26210U203 26210U104 92931L203 92931L104",
7
"exchange": "NASDAQ",
8
"isDelisted": false,
9
"category": "Domestic Common Stock",
10
"sector": "Consumer Cyclical",
11
"industry": "Auto Manufacturers",
12
"sic": "4899",
13
"sicSector": "Transportation Communications Electric Gas And Sanitary Service",
14
"sicIndustry": "Communications Services Nec",
15
"famaSector": "",
16
"famaIndustry": "Communication",
17
"currency": "USD",
18
"location": "Texas; U.S.A",
19
"id": "a451046e671459908c902a4e0942c8a0"
20
}
21
]