https://github.com/jay-plumb/sic-code-list
SIC code list in accordance to the SEC
https://github.com/jay-plumb/sic-code-list
sic standard-industrial-classification
Last synced: about 1 year ago
JSON representation
SIC code list in accordance to the SEC
- Host: GitHub
- URL: https://github.com/jay-plumb/sic-code-list
- Owner: Jay-Plumb
- Created: 2024-06-20T12:45:01.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-24T07:23:26.000Z (almost 2 years ago)
- Last Synced: 2025-03-04T20:08:12.292Z (about 1 year ago)
- Topics: sic, standard-industrial-classification
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/sic-code-list
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Standard industrial classification SIC code list in accordance to the SEC
## Installation
```npm
npm i sic-code-list
```
## Usage
Pass in an SIC code as an array of codes and retrieve the content:
```js
import { lookupSICCode } from "sic-code-list";
async function fetchSICContent() {
try {
const data = await lookupSICCode([100, 200]);
console.log(data);
} catch (error) {
console.error(error);
}
}
fetchSICContent();
```
Response:
```json
[
{
"sicCode": 100,
"office": "Industrial Applications and Services",
"industry": "AGRICULTURAL PRODUCTION-CROPS"
}
]
```