Endpoints
Website Categorization
Endpoints
Website Categorization
This endpoint allows for categorizing websites based on NAICS (North American Industry Classification System) codes or a taxonomy classification.
GET
/
api
/
v1
/
website
/
categorization
curl --request GET \
--url https://categorization.dev/api/v1/website/categorization \
--header 'x-api-key: <x-api-key>'
{
"taxonomy_v3": [
{
"value": "Business and Finance > Industries > Aviation Industry",
"confidence": 0.9
},
{
"value": "Science and Technology > Aerospace",
"confidence": 0.9
},
{
"value": "Automotive > Auto Type > Concept Cars",
"confidence": 0.8
},
{
"value": "Business and Finance > Industries > Defense Industry",
"confidence": 0.8
},
{
"value": "Business and Finance > Industries > Space Industry",
"confidence": 0.8
},
{
"value": "Automotive > Auto Technology > Auto Safety Technologies",
"confidence": 0.7
},
{
"value": "Automotive > Auto Technology > Auto Infotainment Technologies",
"confidence": 0.7
},
{
"value": "Automotive > Auto Technology > Auto Navigation Systems",
"confidence": 0.7
},
{
"value": "Automotive > Auto Type > Green Vehicles",
"confidence": 0.7
},
{
"value": "Business and Finance > Industries > Technology Industry",
"confidence": 0.7
},
{
"value": "Business and Finance > Industries > Telecommunications Industry",
"confidence": 0.7
},
{
"value": "Automotive > Auto Type > Driverless Cars",
"confidence": 0.6
},
{
"value": "Science and Technology > Robotics",
"confidence": 0.6
},
{
"value": "Science and Technology > Artificial Intelligence",
"confidence": 0.6
},
{
"value": "Science and Technology > Quantum Computing",
"confidence": 0.5
}
]
}
Header
This parameter specifies the private key you’ll need for Categorization.dev access.
Parameters
A website url with http://
or https://
protocol.
The classification parameter specifies the type of categorization to be used. It can be either taxonomy_v3
or naics
.
Supported classifications
taxonomy_v3
: A hierarchical taxonomy that categorizes websites into a set of categories and subcategories : with 703 categoriesnaics
: A classification system used by the United States, Canada, and Mexico to classify businesses by industry sector : census.gov naics
{
"taxonomy_v3": [
{
"value": "Business and Finance > Industries > Aviation Industry",
"confidence": 0.9
},
{
"value": "Science and Technology > Aerospace",
"confidence": 0.9
},
{
"value": "Automotive > Auto Type > Concept Cars",
"confidence": 0.8
},
{
"value": "Business and Finance > Industries > Defense Industry",
"confidence": 0.8
},
{
"value": "Business and Finance > Industries > Space Industry",
"confidence": 0.8
},
{
"value": "Automotive > Auto Technology > Auto Safety Technologies",
"confidence": 0.7
},
{
"value": "Automotive > Auto Technology > Auto Infotainment Technologies",
"confidence": 0.7
},
{
"value": "Automotive > Auto Technology > Auto Navigation Systems",
"confidence": 0.7
},
{
"value": "Automotive > Auto Type > Green Vehicles",
"confidence": 0.7
},
{
"value": "Business and Finance > Industries > Technology Industry",
"confidence": 0.7
},
{
"value": "Business and Finance > Industries > Telecommunications Industry",
"confidence": 0.7
},
{
"value": "Automotive > Auto Type > Driverless Cars",
"confidence": 0.6
},
{
"value": "Science and Technology > Robotics",
"confidence": 0.6
},
{
"value": "Science and Technology > Artificial Intelligence",
"confidence": 0.6
},
{
"value": "Science and Technology > Quantum Computing",
"confidence": 0.5
}
]
}
Was this page helpful?
curl --request GET \
--url https://categorization.dev/api/v1/website/categorization \
--header 'x-api-key: <x-api-key>'
{
"taxonomy_v3": [
{
"value": "Business and Finance > Industries > Aviation Industry",
"confidence": 0.9
},
{
"value": "Science and Technology > Aerospace",
"confidence": 0.9
},
{
"value": "Automotive > Auto Type > Concept Cars",
"confidence": 0.8
},
{
"value": "Business and Finance > Industries > Defense Industry",
"confidence": 0.8
},
{
"value": "Business and Finance > Industries > Space Industry",
"confidence": 0.8
},
{
"value": "Automotive > Auto Technology > Auto Safety Technologies",
"confidence": 0.7
},
{
"value": "Automotive > Auto Technology > Auto Infotainment Technologies",
"confidence": 0.7
},
{
"value": "Automotive > Auto Technology > Auto Navigation Systems",
"confidence": 0.7
},
{
"value": "Automotive > Auto Type > Green Vehicles",
"confidence": 0.7
},
{
"value": "Business and Finance > Industries > Technology Industry",
"confidence": 0.7
},
{
"value": "Business and Finance > Industries > Telecommunications Industry",
"confidence": 0.7
},
{
"value": "Automotive > Auto Type > Driverless Cars",
"confidence": 0.6
},
{
"value": "Science and Technology > Robotics",
"confidence": 0.6
},
{
"value": "Science and Technology > Artificial Intelligence",
"confidence": 0.6
},
{
"value": "Science and Technology > Quantum Computing",
"confidence": 0.5
}
]
}