NAICS (North American Industry Classification System) is maintained by the United States Bureau of Labor Statistics to classify business types. It is used for aggregating, presenting, and analyzing data and trends in the US economy.
The classification system is currently hosted by the Census Bureau and provided in various Excel and PDF documents, with some rudimentary HTML output and a not-so-great search tool. Our goal is to improve on the Census Bureau's offerings by providing an API to make information machine-readable, with better search functionality, to assist with developing applications that depend on understanding or collecting information about businesses.
NAICS API is currently a Node.js server that returns NAICS data in a JSON format. Information stored on the server has been scraped or collected from files on the Census.gov web site. Most of the information for 2007 and 2012 has now been scraped thanks to the addition of a python scraper by Mike Migurski (see ./data/scrape-examples-xrefs
).
Latest API documentation is hosted at Apiary.io.
Example request
http://api.naics.us/v0/q?year=2012&code=519120
To get NAICS codes above a given code
http://api.naics.us/v0/q?year=2012&code=519120&above=1
To get NAICS codes below a given code
http://api.naics.us/v0/q?year=2012&code=51&below=1
To get all NAICS codes for a given years codes (only 2007 and 2012 are available right now)
http://api.naics.us/v0/q?year=2012
To get all NAICS codes for given search terms (searches only title and index right now)
http://api.naics.us/v0/s?year=2012&terms=libraries
Warning! The URL (server and/or structure) is likely to change in the very near future. Do not use for production (yet).
-
A simple example demo search interface for NAICS codes site and repository
-
Work in progress real-world application site and repository
- An early NAICS scraper at daguar/naics-scraper)
- Further discussion at dobtco/NAICS
- Ongoing progress report at codeforamerica/hack-requests
-
Download and install Node.js.
-
Clone this repository to a folder on your computer. The rest of this document will refer to this folder as
$PROJECT_ROOT
. -
Install project dependencies.
cd $PROJECT_ROOT npm install
-
Update the project dependencies.
cd $PROJECT_ROOT npm install
-
Start the REST API server.
cd $PROJECT_ROOT npm start
There are other data that can be included in the API. Not all of these are within the scope of the scraper however.
- Illustrative examples from 2007 NAICS
- Information from NAICS prior to 2007 (2002, 1997 - low priority)
- Data for converting between different NAICS codes and other systems, like SIC or NIGP
On the API side:
- The API should perform searches on all the available data and return relevant results from the requester (e.g. a business type lookup application)
- Close existing issues.
We use the GitHub issue tracker to track bugs and features. Before submitting a bug report or feature request, check to make sure it hasn't already been submitted. When submitting a bug report, please include a Gist that includes a stack trace and any details that may be necessary to reproduce the bug, including your gem version, Ruby version, and operating system. Ideally, a bug report should include a pull request with failing specs.
- Fork the repository.
- Create a topic branch.
- Add specs for your unimplemented feature or bug fix.
- Implement your feature or bug fix.
- Add, commit, and push your changes.
- Submit a pull request.