You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+76
Original file line number
Diff line number
Diff line change
@@ -425,6 +425,82 @@ print(filing)
425
425
> See the documentation for more details: https://sec-api.io/docs/sec-filings-render-api
426
426
427
427
428
+
# CUSIP/CIK/Ticker Mapping API
429
+
430
+
Resolve a CUSIP, CIK, ticker symbol or company name to a set of standardized company details. Listing companies by exchange, sector and industry is also supported.
431
+
432
+
Map any of the following parameters to company details:
433
+
- CUSIP
434
+
- CIK
435
+
- Ticker
436
+
- Company name
437
+
- Exchange
438
+
- Sector
439
+
- Industry
440
+
441
+
The function returns an array of all matching companies in JSON format. For example, a look up of the ticker `IBM` returns multiple matches including `IBMD` and `IBME`.
442
+
443
+
A company object includes the following properties:
444
+
445
+
-`name` (string) - the name of the company, e.g. Tesla Inc
446
+
-`ticker` (string) - the ticker symbol of the company.
447
+
-`cik` (string) - the CIK of the company. Trailing zeros are removed.
448
+
-`cusip` (string) - one or multiple CUSIPs linked to the company. Multiple CUSIPs are delimited by space, e.g. "054748108 92931L302 92931L401"
449
+
-`exchange` (string) - the main exchange the company is listed on, e.g. NASDAQ
450
+
-`isDelisted` (boolean) - true if the company is no longer listed, false otherwise.
451
+
-`category` (string) - the security category, e.g. "Domestic Common Stock"
452
+
-`sector` (string) - the sector of the company, e.g. "Consumer Cyclical"
453
+
-`industry` (string) - the industry of the company, e.g. "Auto Manufacturers"
454
+
-`sic` (string) - four-digit SIC code, e.g. "3711"
455
+
-`sicSector` (string) - SIC sector name of the company, e.g. "Manufacturing"
456
+
-`sicIndustry` (string) - SIC industry name of the company, e.g. "Motor Vehicles & Passenger Car Bodies"
457
+
-`currency` (string) - operating currency of the company, e.g. "USD"
458
+
-`location` (string) - location of the company's headquarters
459
+
-`id` (string) - unique internal ID of the company, e.g. "e27d6e9606f216c569e46abf407685f3"
0 commit comments