FREE

IP2Location™ IAB Tech Lab Content Taxonomy

The domain category is based on IAB Tech Lab Content Taxonomy. These categories are comprised of Tier-1 and Tier-2 (if available) level categories widely used in services like advertising, Internet security and filtering appliances.

Download
Free download
Features
Last Update 04 May, 2021
Database Format CSV Text File (Comma Delimited)
Database Fields
Name Type Description
category_code CHAR(10) Category code.
category_name VARCHAR(50) The actual category name.
Sample Database
"IAB5-3","Art History"
"IAB5-4","College Administration"
"IAB5-5","College Life"
"IAB5-6","Distance Learning"
"IAB5-7","English as a 2nd Language"
"IAB5-8","Language Learning"
"IAB5-9","Graduate School"
"IAB5-10","Homeschooling"
"IAB5-11","Homework/Study Tips"
"IAB5-12","K-6 Educators"
"IAB5-13","Private School"
"IAB5-14","Special Education"
"IAB5-15","Studying Business"
"IAB6","Family & Parenting"
"IAB6-1","Adoption"
"IAB6-2","Babies & Toddlers"
MySQL Statement
CREATE TABLE `ip2location_iab_category`(
	`category_code` CHAR(10),
	`category_name` VARCHAR(50),
	INDEX `idx_category_code` (`category_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;

LOAD DATA LOCAL
INFILE 'iab_categories.csv' INTO TABLE `ip2location_iab_category`
CHARACTER SET latin1
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\n' IGNORE 1 LINES;
License Information

This works is licensed under Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0).

It is free for personal or commercial use with attribution required by mentioning the use of this works as follows:
"This site or product includes IP2Location™ Country Information Database which available from https://www.ip2location.com."