NosibleClient
Nosible API Client / NosibleClient
Class: NosibleClient
Defined in: src/client.ts:205
Nosible API Client
The main client class for interacting with the Nosible AI Search API. This class provides a comprehensive interface for performing various types of searches, scraping web content, and analyzing topic trends.
Features:
- Fast Search: Quick, optimized searches with configurable result limits (10-100 results)
- AI Search: Advanced AI-powered searches with custom instructions
- Bulk Search: Large-scale searches for extensive data collection (1000-10000 results)
- URL Scraping: Extract structured content from web pages
- Topic Trends: Analyze trending topics and their popularity over time
The client automatically handles rate limiting, request validation, and response parsing. It also supports optional OpenRouter integration for enhanced LLM capabilities.
Example
// Initialize with API key
const client = new NosibleClient('your-api-key');
// Or use environment variable NOSIBLE_API_KEY
const client = new NosibleClient();
// Initialize with default search parameters
const clientWithDefaults = new NosibleClient({
apiKey: 'your-api-key',
searchDefaults: {
nResults: 20,
algorithm: 'hybrid-2',
continent: 'North America'
}
});
// Perform a fast search (will use defaults from client)
const results = await clientWithDefaults.fastSearch({
question: 'Who has invested in Nosible?'
// nResults, algorithm, and continent will use defaults
});
// Perform a fast search
const results = await client.fastSearch({
question: 'Who has invested in Nosible?',
nResults: 15
});
// Access search results
console.log(`Found ${results.length} results`);
results.forEach(result => {
console.log(`Title: ${result.title}`);
console.log(`URL: ${result.url}`);
console.log(`Content: ${result.content.substring(0, 200)}...`);
});
Constructors
Constructor
new NosibleClient(
params?):NosibleClient
Defined in: src/client.ts:299
Creates a new NosibleClient instance.
The client can be initialized in several ways:
- With a string API key
- With an object containing API keys and configuration
- With no parameters (uses environment variables)
Environment variables:
NOSIBLE_API_KEY: Your Nosible API key (required if no params provided)LLM_API_KEY: Optional OpenRouter API key for LLM features
Parameters
params?
Configuration options. Can be a string API key or an object with detailed configuration.
string |
{ apiKey?: string; llmApiKey?: string; openAiBaseURL?: string; sentimentModel?: string; expansionsModel?: string; searchDefaults?: { autoGenerateExpansions?: boolean; expansions?: string[]; sqlFilter?: string; algorithm?: "string" | "baseline" | "lexical" | "hamming" | "hybrid-1" | "hybrid-2" | "hybrid-3" | "company"; nResults?: number; nProbes?: number; nContextify?: number; minSimilarity?: number; mustInclude?: string[]; mustExclude?: string[]; brandSafety?: "Safe" | "Sensitive" | "Unsafe"; language?: "af" | "am" | "ar" | "as" | "az" | "be" | "bg" | "bn" | "br" | "bs" | "ca" | "cs" | "cy" | "da" | "de" | "el" | "en" | "eo" | "es" | "et" | "eu" | "fa" | "fi" | "fr" | "fy" | "ga" | "gd" | "gl" | "gu" | "ha" | "he" | "hi" | "hr" | "hu" | "hy" | "id" | "is" | "it" | "ja" | "jv" | "ka" | "kk" | "km" | "kn" | "ko" | "ku" | "ky" | "la" | "lo" | "lt" | "lv" | "mg" | "mk" | "ml" | "mn" | "mr" | "ms" | "my" | "ne" | "nl" | "no" | "om" | "or" | "pa" | "pl" | "ps" | "pt" | "ro" | "ru" | "sa" | "sd" | "sh" | "si" | "sk" | "sl" | "so" | "sq" | "sr" | "su" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "ug" | "uk" | "ur" | "uz" | "vi" | "xh" | "yi" | "zh"; continent?: "Africa" | "Asia" | "Europe" | "North America" | "Oceania" | "South America" | "Worldwide"; region?: "North America" | "Oceania" | "South America" | "Worldwide" | "Caribbean" | "Central Africa" | "Central America" | "Central Asia" | "Central Europe" | "East Africa" | "East Asia" | "Eastern Europe" | "Middle East" | "North Africa" | "Northern Europe" | "South Asia" | "Southeast Asia" | "Southern Africa" | "Southern Europe" | "Sub-Saharan Africa" | "The Amazon Basin" | "The Andes" | "The Arctic Region" | "The Balkans" | "The Caucasus" | "The Horn of Africa" | "The Levant" | "The Middle East" | "The Sahel" | "West Africa" | "Western Europe"; country?: "Worldwide" | "Afghanistan" | "Albania" | "Algeria" | "Andorra" | "Angola" | "Antigua and Barbuda" | "Argentina" | "Armenia" | "Australia" | "Austria" | "Azerbaijan" | "Bahamas" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bhutan" | "Bolivia" | "Bosnia and Herzegovina" | "Botswana" | "Brazil" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cabo Verde" | "Cambodia" | "Cameroon" | "Canada" | "Central African Republic" | "Chad" | "Chile" | "China" | "Colombia" | "Comoros" | "Congo (Congo-Brazzaville)" | "Costa Rica" | "Croatia" | "Cuba" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Eswatini" | "Ethiopia" | "Fiji" | "Finland" | "France" | "Gabon" | "Gambia" | "Georgia" | "Germany" | "Ghana" | "Greece" | "Grenada" | "Guatemala" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Honduras" | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Marshall Islands" | "Mauritania" | "Mauritius" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "North Korea" | "North Macedonia" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Panama" | "Papua New Guinea" | "Paraguay" | "Peru" | "Philippines" | "Poland" | "Portugal" | "Qatar" | "Romania" | "Russia" | "Rwanda" | "Saint Kitts and Nevis" | "Saint Lucia" | "Saint Vincent and the Grenadines" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "Timor-Leste" | "Togo" | "Tonga" | "Trinidad and Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City" | "Venezuela" | "Vietnam" | "Yemen" | "Zambia" | "Zimbabwe"; sector?: "Other" | "Communication Services" | "Consumer Discretionary" | "Consumer Staples" | "Energy" | "Financials" | "Health Care" | "Industrials" | "Information Technology" | "Materials" | "Real Estate" | "Utilities"; industryGroup?: "Other" | "Energy" | "Materials" | "Utilities" | "Automobiles & Components" | "Banks" | "Capital Goods" | "Commercial & Professional Services" | "Consumer Discretionary Distribution & Retail" | "Consumer Durables & Apparel" | "Consumer Services" | "Consumer Staples Distribution & Retail" | "Equity Real Estate Investment Trusts (REITs)" | "Financial Services" | "Food, Beverage & Tobacco" | "Health Care Equipment & Services" | "Household & Personal Products" | "Insurance" | "Media & Entertainment" | "Pharmaceuticals, Biotechnology & Life Sciences" | "Real Estate Management & Development" | "Semiconductors & Semiconductor Equipment" | "Software & Services" | "Technology Hardware & Equipment" | "Telecommunication Services" | "Transportation"; industry?: "Other" | "Banks" | "Consumer Staples Distribution & Retail" | "Financial Services" | "Insurance" | "Real Estate Management & Development" | "Semiconductors & Semiconductor Equipment" | "Aerospace & Defense" | "Air Freight & Logistics" | "Automobile Components" | "Automobiles" | "Beverages" | "Biotechnology" | "Broadline Retail" | "Building Products" | "Capital Markets" | "Chemicals" | "Commercial Services & Supplies" | "Communications Equipment" | "Construction & Engineering" | "Construction Materials" | "Consumer Finance" | "Containers & Packaging" | "Distributors" | "Diversified Consumer Services" | "Diversified REITs" | "Diversified Telecommunication Services" | "Electric Utilities" | "Electrical Equipment" | "Electronic Equipment, Instruments & Components" | "Energy Equipment & Services" | "Entertainment" | "Food Products" | "Gas Utilities" | "Ground Transportation" | "Health Care Equipment & Supplies" | "Health Care Providers & Services" | "Health Care REITs" | "Health Care Technology" | "Hotel & Resort REITs" | "Hotels, Restaurants & Leisure" | "Household Durables" | "Household Products" | "IT Services" | "Independent Power and Renewable Electricity Producers" | "Industrial Conglomerates" | "Industrial REITs" | "Interactive Media & Services" | "Leisure Products" | "Life Sciences Tools & Services" | "Machinery" | "Marine Transportation" | "Media" | "Metals & Mining" | "Mortgage Real Estate Investment Trusts (REITs)" | "Multi-Utilities" | "Office REITs" | "Oil, Gas & Consumable Fuels" | "Paper & Forest Products" | "Passenger Airlines" | "Personal Care Products" | "Pharmaceuticals" | "Professional Services" | "Residential REITs" | "Retail REITs" | "Software" | "Specialized REITs" | "Specialty Retail" | "Technology Hardware, Storage & Peripherals" | "Textiles, Apparel & Luxury Goods" | "Tobacco" | "Trading Companies & Distributors" | "Transportation Infrastructure" | "Water Utilities" | "Wireless Telecommunication Services"; subIndustry?: "Other" | "Aerospace & Defense" | "Air Freight & Logistics" | "Biotechnology" | "Broadline Retail" | "Building Products" | "Communications Equipment" | "Construction & Engineering" | "Construction Materials" | "Consumer Finance" | "Distributors" | "Electric Utilities" | "Gas Utilities" | "Health Care Technology" | "Household Products" | "Industrial Conglomerates" | "Interactive Media & Services" | "Leisure Products" | "Life Sciences Tools & Services" | "Marine Transportation" | "Multi-Utilities" | "Passenger Airlines" | "Personal Care Products" | "Pharmaceuticals" | "Technology Hardware, Storage & Peripherals" | "Tobacco" | "Trading Companies & Distributors" | "Water Utilities" | "Wireless Telecommunication Services" | "Advertising" | "Agricultural & Farm Machinery" | "Agricultural Products & Services" | "Airport Services" | "Alternative Carriers" | "Aluminum" | "Apparel Retail" | "Apparel, Accessories & Luxury Goods" | "Application Software" | "Asset Management & Custody Banks" | "Automobile Manufacturers" | "Automotive Parts & Equipment" | "Automotive Retail" | "Brewers" | "Broadcasting" | "Cable & Satellite" | "Cargo Ground Transportation" | "Casinos & Gaming" | "Coal & Consumable Fuels" | "Commercial & Residential Mortgage Finance" | "Commercial Printing" | "Commodity Chemicals" | "Computer & Electronics Retail" | "Construction Machinery & Heavy Transportation Equipment" | "Consumer Electronics" | "Consumer Staples Merchandise Retail" | "Copper" | "Data Center REITs*" | "Data Processing & Outsourced Services" | "Distillers & Vintners" | "Diversified Banks" | "Diversified Capital Markets" | "Diversified Chemicals" | "Diversified Financial Services" | "Diversified Metals & Mining" | "Diversified REITs*" | "Diversified Real Estate Activities" | "Diversified Support Services" | "Drug Retail" | "Education Services" | "Electrical Components & Equipment" | "Electronic Components" | "Electronic Equipment & Instruments " | "Electronic Manufacturing Services" | "Environmental & Facilities Services" | "Fertilizers & Agricultural Chemicals" | "Financial Exchanges & Data" | "Food Distributors" | "Food Retail" | "Footwear" | "Forest Products" | "Gold" | "Health Care Distributors" | "Health Care Equipment" | "Health Care Facilities" | "Health Care REITs*" | "Health Care Services" | "Health Care Supplies" | "Heavy Electrical Equipment" | "Highways & Railtracks" | "Home Furnishings" | "Home Improvement Retail" | "Homebuilding" | "Homefurnishing Retail" | "Hotel & Resort REITs*" | "Hotels, Resorts & Cruise Lines" | "Household Appliances" | "Housewares & Specialties" | "Human Resource & Employment Services" | "IT Consulting & Other Services" | "Independent Power Producers & Energy Traders" | "Industrial Gases" | "Industrial Machinery & Supplies & Components" | "Industrial REITs*" | "Insurance Brokers" | "Integrated Oil & Gas" | "Integrated Telecommunication Services" | "Interactive Home Entertainment" | "Internet Services & Infrastructure" | "Investment Banking & Brokerage" | "Leisure Facilities" | "Life & Health Insurance" | "Managed Health Care" | "Marine Ports & Services" | "Metal, Glass & Plastic Containers " | "Mortgage REITs*" | "Motorcycle Manufacturers" | "Movies & Entertainment" | "Multi-Family Residential REITs*" | "Multi-Sector Holdings" | "Multi-line Insurance" | "Office REITs*" | "Office Services & Supplies" | "Oil & Gas Drilling" | "Oil & Gas Equipment & Services" | "Oil & Gas Exploration & Production" | "Oil & Gas Refining & Marketing" | "Oil & Gas Storage & Transportation" | "Other Specialized REITs*" | "Other Specialty Retail" | "Packaged Foods & Meats" | "Paper & Plastic Packaging Products & Materials" | "Paper Products" | "Passenger Ground Transportation" | "Precious Metals & Minerals" | "Property & Casualty Insurance" | "Publishing" | "Rail Transportation" | "Real Estate Development" | "Real Estate Operating Companies" | "Real Estate Services" | "Regional Banks" | "Reinsurance" | "Renewable Electricity" | "Research & Consulting Services" | "Restaurants" | "Retail REITs*" | "Security & Alarm Services" | "Self-Storage REITs*" | "Semiconductor Materials & Equipment" | "Semiconductors" | "Silver" | "Single-Family Residential REITs*" | "Soft Drinks & Non-alcoholic Beverages" | "Specialized Consumer Services" | "Specialized Finance" | "Specialty Chemicals" | "Steel" | "Systems Software" | "Technology Distributors" | "Telecom Tower REITs*" | "Textiles" | "Timber REITs*" | "Tires & Rubber" | "Transaction & Payment Processing Services"; iabTier1?: "Real Estate" | "Entertainment" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts"; iabTier2?: "Real Estate" | "Insurance" | "Entertainment" | "Consumer Electronics" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" | "Action/Adventure" | "Adult & Explicit Sexual Content" | "Adult Album Alternative" | "Adult Contemporary Music" | "Adult Education" | "Agnosticism" | "Alcoholic Beverages" | "Alternative Music" | "American Football" | "Amusement and Theme Parks" | "Animation & Anime" | "Anniversary" | "Antiquing and Antiques" | "Apartments" | "Apprenticeships" | "Arms & Ammunition" | "Art and Photography" | "Artificial Intelligence" | "Arts and Crafts" | "Astrology" | "Atheism" | "Augmented Reality" | "Australian Rules Football" | "Auto Body Styles" | "Auto Buying and Selling" | "Auto Insurance" | "Auto Parts" | "Auto Racing" | "Auto Recalls" | "Auto Rentals" | "Auto Repair" | "Auto Safety" | "Auto Shows" | "Auto Technology" | "Auto Type" | "Awards Shows" | "Baby Shower" | "Bachelor Party" | "Bachelorette Party" | "Badminton" | "Barbecues and Grilling" | "Bars & Restaurants" | "Baseball" | "Basketball" | "Beach Volleyball" | "Beauty" | "Beekeeping" | "Bereavement" | "Biographies" | "Biological Sciences" | "Birds" | "Birdwatching" | "Birth" | "Birthday" | "Blues" | "Body Art" | "Bodybuilding" | "Bowling" | "Boxing" | "Buddhism" | "Business" | "Business Expos & Conferences" | "Car Culture" | "Career Advice" | "Career Planning" | "Casinos & Gambling" | "Cats" | "Celebrity Deaths" | "Celebrity Families" | "Celebrity Homes" | "Celebrity Pregnancy" | "Celebrity Relationships" | "Celebrity Scandal" | "Celebrity Style" | "Cheerleading" | "Chemistry" | "Children's Clothing" | "Children's Games and Toys" | "Children's Health" | "Children's Music" | "Christianity" | "Cigars" | "Civic affairs" | "Classic Hits" | "Classical Music" | "Collecting" | "College Education" | "College Radio" | "College Sports" | "Comedy" | "Comedy (Music and Audio)" | "Comics and Graphic Novels" | "Computing" | "Console Games" | "Consumer Banking" | "Contemporary Hits/Pop/Top 40" | "Content Production" | "Cooking" | "Cosmetic Medical Services" | "Costume" | "Country Music" | "Coupons and Discounts" | "Cricket" | "Crime & Harmful Acts to Individuals, Society & Human Right Violations" | "Cycling" | "Dance" | "Dance and Electronic Music" | "Darts" | "Dash Cam Videos" | "Dating" | "Death, Injury, or Military Conflict" | "Debated Sensitive Social Issues" | "Design" | "Designer Clothing" | "Desserts and Baking" | "Developmental Sites" | "Digital Arts" | "Dining Out" | "Disabled Sports" | "Diseases and Conditions" | "Diving" | "Divorce" | "Documentary" | "Dogs" | "Drama" | "Early Childhood Education" | "Economy" | "Educational Assessment" | "Eldercare" | "Elections" | "Environment" | "Equine Sports" | "Extreme Sports" | "Factual" | "Family/Children" | "Fan Conventions" | "Fantasy" | "Fantasy Sports" | "Fashion Trends" | "Fiction" | "Field Hockey" | "Figure Skating" | "Financial Assistance" | "Financial Planning" | "Fine Art Photography" | "Fish and Aquariums" | "Fishing Sports" | "Fitness and Exercise" | "Flower Shopping" | "Food Allergies" | "Food Movements" | "Frugal Living" | "Funeral" | "Games and Puzzles" | "Gardening" | "Genealogy and Ancestry" | "Genetics" | "Geography" | "Geology" | "Gifts and Greetings Cards" | "Golf" | "Gospel Music" | "Graduation" | "Grocery Shopping" | "Gymnastics" | "Hate Speech and Acts of Aggression" | "Healthy Cooking and Eating" | "High Fashion" | "Hinduism" | "Hip Hop Music" | "Historic Site and Landmark Tours" | "History" | "Holiday" | "Holiday Shopping" | "Home Appliances" | "Home Entertaining" | "Home Improvement" | "Home Security" | "Home Utilities" | "Homeschooling" | "Homework and Study" | "Horror" | "Hotel Properties" | "Household Supplies" | "Houses" | "Humor and Satire" | "Hunting and Shooting" | "Ice Hockey" | "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" | "Indoor Environmental Quality" | "Industrial Property" | "Industries" | "Inline Skating" | "Inspirational/New Age Music" | "Interior Decorating" | "Islam" | "Jazz" | "Job Search" | "Judaism" | "Lacrosse" | "Land and Farms" | "Landscaping" | "Language Learning" | "Large Animals" | "Lifestyle" | "Lotteries and Scratchcards" | "Magic and Illusion" | "Malls & Shopping Centers" | "Marriage and Civil Unions" | "Martial Arts" | "Medical Tests" | "Men's Fashion" | "Men's Health" | "Mobile Games" | "Model Toys" | "Modern Art" | "Motorcycles" | "Movies" | "Museums & Galleries" | "Music" | "Music Video" | "Musical" | "Musical Instruments" | "Mystery" | "National & Civic Holidays" | "Nature" | "Nightclubs" | "Non-Alcoholic Beverages" | "Nutrition" | "Obscenity and Profanity" | "Office Property" | "Oldies/Adult Standards" | "Olympic Sports" | "Online Education" | "Online Piracy" | "Opera" | "Outdoor Activities" | "Outdoor Decorating" | "PC Games" | "Paranormal Phenomena" | "Parenting" | "Parks & Nature" | "Party Supplies and Decorations" | "Personal Care" | "Personal Debt" | "Personal Investing" | "Personal Taxes" | "Pet Adoptions" | "Pet Supplies" | "Pharmaceutical Drugs" | "Physics" | "Poetry" | "Poker and Professional Gambling" | "Political Issues & policy" | "Primary Education" | "Private School" | "Prom" | "R&B/Soul/Funk" | "Radio Control" | "Real Estate Buying and Selling" | "Real Estate Renting and Leasing" | "Reality TV" | "Reggae" | "Religious (Music and Audio)" | "Remodeling & Construction" | "Remote Working" | "Reptiles" | "Retail Property" | "Retirement Planning" | "Road-Side Assistance" | "Robotics" | "Rock Music" | "Rodeo" | "Romance" | "Rowing" | "Rugby" | "Sailing" | "Sales and Promotions" | "Sci-fi and Fantasy" | "Science Fiction" | "Scooters" | "Secondary Education" | "Senior Health" | "Sikhism" | "Single Life" | "Skiing" | "Smart Home" | "Snooker/Pool/Billiards" | "Soap Opera" | "Soccer" | "Softball" | "Songwriters/Folk" | "Soundtracks, TV and Showtunes" | "Space and Astronomy" | "Spam or Harmful Content" | "Special Education" | "Special Interest (Indie/Art House)" | "Spirituality" | "Sports Equipment" | "Sports Radio" | "Squash" | "Street Style" | "Surgery" | "Swimming" | "Table Tennis" | "Talk Radio" | "Talk Show" | "Television" | "Tennis" | "Terrorism" | "Theater" | "Theater Venues" | "Thriller" | "Track and Field" | "Travel Accessories" | "Travel Locations" | "Travel Preparation and Advice" | "Travel Type" | "True Crime" | "Urban Contemporary Music" | "Vacation Properties" | "Vaccines" | "Variety (Music and Audio)" | "Vegan Diets" | "Vegetarian Diets" | "Veterinary Medicine" | "Video Game Genres" | "Virtual Reality" | "Vocational Training" | "Volleyball" | "Walking" | "Water Polo" | "Weather" | "Wedding" | "Weight Loss" | "Weightlifting" | "Wellness" | "Western" | "Women's Fashion" | "Women's Health" | "Workshops and Classes" | "World Cuisines" | "World/International Music" | "Wrestling" | "Young Adult" | "Zoos & Aquariums" | "eSports"; iabTier3?: "Real Estate" | "Insurance" | "Entertainment" | "Consumer Electronics" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" | "Action/Adventure" | "Adult & Explicit Sexual Content" | "Adult Album Alternative" | "Adult Contemporary Music" | "Adult Education" | "Agnosticism" | "Alcoholic Beverages" | "Alternative Music" | "American Football" | "Amusement and Theme Parks" | "Animation & Anime" | "Anniversary" | "Antiquing and Antiques" | "Apartments" | "Apprenticeships" | "Arms & Ammunition" | "Art and Photography" | "Artificial Intelligence" | "Arts and Crafts" | "Astrology" | "Atheism" | "Augmented Reality" | "Australian Rules Football" | "Auto Body Styles" | "Auto Buying and Selling" | "Auto Insurance" | "Auto Parts" | "Auto Racing" | "Auto Recalls" | "Auto Rentals" | "Auto Repair" | "Auto Safety" | "Auto Shows" | "Auto Technology" | "Auto Type" | "Awards Shows" | "Baby Shower" | "Bachelor Party" | "Bachelorette Party" | "Badminton" | "Barbecues and Grilling" | "Bars & Restaurants" | "Baseball" | "Basketball" | "Beach Volleyball" | "Beauty" | "Beekeeping" | "Bereavement" | "Biographies" | "Biological Sciences" | "Birds" | "Birdwatching" | "Birth" | "Birthday" | "Blues" | "Body Art" | "Bodybuilding" | "Bowling" | "Boxing" | "Buddhism" | "Business" | "Business Expos & Conferences" | "Car Culture" | "Career Advice" | "Career Planning" | "Casinos & Gambling" | "Cats" | "Celebrity Deaths" | "Celebrity Families" | "Celebrity Homes" | "Celebrity Pregnancy" | "Celebrity Relationships" | "Celebrity Scandal" | "Celebrity Style" | "Cheerleading" | "Chemistry" | "Children's Clothing" | "Children's Games and Toys" | "Children's Health" | "Children's Music" | "Christianity" | "Cigars" | "Civic affairs" | "Classic Hits" | "Classical Music" | "Collecting" | "College Education" | "College Radio" | "College Sports" | "Comedy" | "Comedy (Music and Audio)" | "Comics and Graphic Novels" | "Computing" | "Console Games" | "Consumer Banking" | "Contemporary Hits/Pop/Top 40" | "Content Production" | "Cooking" | "Cosmetic Medical Services" | "Costume" | "Country Music" | "Coupons and Discounts" | "Cricket" | "Crime & Harmful Acts to Individuals, Society & Human Right Violations" | "Cycling" | "Dance" | "Dance and Electronic Music" | "Darts" | "Dash Cam Videos" | "Dating" | "Death, Injury, or Military Conflict" | "Debated Sensitive Social Issues" | "Design" | "Designer Clothing" | "Desserts and Baking" | "Developmental Sites" | "Digital Arts" | "Dining Out" | "Disabled Sports" | "Diseases and Conditions" | "Diving" | "Divorce" | "Documentary" | "Dogs" | "Drama" | "Early Childhood Education" | "Economy" | "Educational Assessment" | "Eldercare" | "Elections" | "Environment" | "Equine Sports" | "Extreme Sports" | "Factual" | "Family/Children" | "Fan Conventions" | "Fantasy" | "Fantasy Sports" | "Fashion Trends" | "Fiction" | "Field Hockey" | "Figure Skating" | "Financial Assistance" | "Financial Planning" | "Fine Art Photography" | "Fish and Aquariums" | "Fishing Sports" | "Fitness and Exercise" | "Flower Shopping" | "Food Allergies" | "Food Movements" | "Frugal Living" | "Funeral" | "Games and Puzzles" | "Gardening" | "Genealogy and Ancestry" | "Genetics" | "Geography" | "Geology" | "Gifts and Greetings Cards" | "Golf" | "Gospel Music" | "Graduation" | "Grocery Shopping" | "Gymnastics" | "Hate Speech and Acts of Aggression" | "Healthy Cooking and Eating" | "High Fashion" | "Hinduism" | "Hip Hop Music" | "Historic Site and Landmark Tours" | "History" | "Holiday" | "Holiday Shopping" | "Home Appliances" | "Home Entertaining" | "Home Improvement" | "Home Security" | "Home Utilities" | "Homeschooling" | "Homework and Study" | "Horror" | "Hotel Properties" | "Household Supplies" | "Houses" | "Humor and Satire" | "Hunting and Shooting" | "Ice Hockey" | "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" | "Indoor Environmental Quality" | "Industrial Property" | "Industries" | "Inline Skating" | "Inspirational/New Age Music" | "Interior Decorating" | "Islam" | "Jazz" | "Job Search" | "Judaism" | "Lacrosse" | "Land and Farms" | "Landscaping" | "Language Learning" | "Large Animals" | "Lifestyle" | "Lotteries and Scratchcards" | "Magic and Illusion" | "Malls & Shopping Centers" | "Marriage and Civil Unions" | "Martial Arts" | "Medical Tests" | "Men's Fashion" | "Men's Health" | "Mobile Games" | "Model Toys" | "Modern Art" | "Motorcycles" | "Movies" | "Museums & Galleries" | "Music" | "Music Video" | "Musical Instruments" | "Mystery" | "National & Civic Holidays" | "Nature" | "Nightclubs" | "Non-Alcoholic Beverages" | "Nutrition" | "Obscenity and Profanity" | "Office Property" | "Oldies/Adult Standards" | "Olympic Sports" | "Online Education" | "Online Piracy" | "Opera" | "Outdoor Decorating" | "PC Games" | "Paranormal Phenomena" | "Parenting" | "Party Supplies and Decorations" | "Personal Care" | "Personal Debt" | "Personal Investing" | "Personal Taxes" | "Pet Adoptions" | "Pet Supplies" | "Pharmaceutical Drugs" | "Physics" | "Poetry" | "Poker and Professional Gambling" | "Primary Education" | "Private School" | "Prom" | "R&B/Soul/Funk" | "Radio Control" | "Real Estate Buying and Selling" | "Real Estate Renting and Leasing" | "Reality TV" | "Reggae" | "Religious (Music and Audio)" | "Remodeling & Construction" | "Remote Working" | "Reptiles" | "Retail Property" | "Retirement Planning" | "Road-Side Assistance" | "Robotics" | "Rock Music" | "Rodeo" | "Romance" | "Rowing" | "Rugby" | "Sailing" | "Sales and Promotions" | "Sci-fi and Fantasy" | "Science Fiction" | "Scooters" | "Secondary Education" | "Senior Health" | "Sikhism" | "Single Life" | "Skiing" | "Smart Home" | "Snooker/Pool/Billiards" | "Soap Opera" | "Soccer" | "Softball" | "Songwriters/Folk" | "Soundtracks, TV and Showtunes" | "Space and Astronomy" | "Spam or Harmful Content" | "Special Education" | "Special Interest (Indie/Art House)" | "Spirituality" | "Sports Equipment" | "Sports Radio" | "Squash" | "Street Style" | "Surgery" | "Swimming" | "Table Tennis" | "Talk Radio" | "Talk Show" | "Television" | "Tennis" | "Terrorism" | "Theater" | "Theater Venues" | "Thriller" | "Track and Field" | "Travel Accessories" | "Travel Locations" | "Travel Preparation and Advice" | "Travel Type" | "True Crime" | "Urban Contemporary Music" | "Vacation Properties" | "Vaccines" | "Variety (Music and Audio)" | "Vegan Diets" | "Vegetarian Diets" | "Veterinary Medicine" | "Video Game Genres" | "Virtual Reality" | "Vocational Training" | "Volleyball" | "Walking" | "Water Polo" | "Weather" | "Wedding" | "Weight Loss" | "Weightlifting" | "Wellness" | "Western" | "Women's Fashion" | "Women's Health" | "Workshops and Classes" | "World Cuisines" | "World/International Music" | "Wrestling" | "Young Adult" | "Zoos & Aquariums" | "eSports" | "Action Video Games" | "Action-Adventure Video Games" | "Adoption and Fostering" | "Adult Video Games" | "Adventure Travel" | "Adventure Video Games" | "Advertising Industry" | "Africa Travel" | "Agriculture" | "Air Travel" | "Album-oriented Rock" | "Allergies" | "Alternative Medicine" | "Alternative Rock" | "Apparel Industry" | "Asia Travel" | "Audio Production" | "Australia and Oceania Travel" | "Auto Infotainment Technologies" | "Auto Navigation Systems" | "Auto Safety Technologies" | "Automotive Industry" | "Aviation Industry" | "Bath and Shower" | "Beach Travel" | "Beadwork" | "Bed & Breakfasts" | "Biotech and Biomedical Industry" | "Blood Disorders" | "Board Games and Puzzles" | "Bone and Joint Conditions" | "Brain and Nervous System Disorders" | "Budget Cars" | "Budget Travel" | "Business Accounting & Finance" | "Business Administration" | "Business Banking & Finance" | "Business I.T." | "Business Operations" | "Business Travel" | "Business Utilities" | "Cameras and Camcorders" | "Camping" | "Cancer" | "Candle and Soap Making" | "Canoeing and Kayaking" | "Card Games" | "Casino and Gambling Video Games" | "Casual Games" | "Certified Pre-Owned Cars" | "Civil Engineering Industry" | "Classic Cars" | "Classic Rock" | "Climbing" | "Cold and Flu" | "College Baseball" | "College Basketball" | "College Football" | "College Planning" | "Comic Books" | "Commercial Trucks" | "Commodities" | "Computer Networking" | "Computer Peripherals" | "Computer Software and Applications" | "Concept Cars" | "Construction Industry" | "Consumer Issues" | "Convertible" | "Coupe" | "Credit Cards" | "Crossover" | "Cruises" | "Currencies" | "Data Storage and Warehousing" | "Day Trips" | "Daycare and Pre-School" | "Defense Industry" | "Dental Health" | "Deodorant and Antiperspirant" | "Desktops" | "Diabetes" | "Digestive Disorders" | "Drawing and Sketching" | "Driverless Cars" | "Ear, Nose and Throat Conditions" | "Education industry" | "Educational Video Games" | "Endocrine and Metabolic Diseases" | "Entertainment Industry" | "Environmental Services Industry" | "Europe Travel" | "Executive Leadership & Management" | "Exercise and Fitness Video Games" | "Eye and Vision Conditions" | "Family Travel" | "Family Video Games" | "Financial Crisis" | "Financial Industry" | "Financial Reform" | "Financial Regulation" | "Food Industry" | "Foot Health" | "Freelance Writing" | "Gas and Electric" | "Gasoline Prices" | "Government Business" | "Government Support and Welfare" | "Green Solutions" | "Green Vehicles" | "Hair Care" | "Hard Rock" | "Hatchback" | "Health Insurance" | "Healthcare Industry" | "Heart and Cardiovascular Diseases" | "Hedge Funds" | "Home Entertainment Systems" | "Home Financing" | "Home Insurance" | "Honeymoons and Getaways" | "Horror Video Games" | "Horse Racing" | "Hospitality Industry" | "Hotels and Motels" | "Housing Market" | "Human Resources" | "Infectious Diseases" | "Information Services Industry" | "Information and Network Security" | "Injuries" | "Interest Rates" | "Internet" | "Internet Safety" | "Internet Service Providers" | "Jewelry Making" | "Job Fairs" | "Job Market" | "Laptops" | "Large Business" | "Legal Services Industry" | "Life Insurance" | "Logistics" | "Logistics and Transportation Industry" | "Lung and Respiratory Health" | "Luxury Cars" | "MMOs" | "Makeup and Accessories" | "Management Consulting Industry" | "Manufacturing Industry" | "Marketing and Advertising" | "Mechanical and Industrial Engineering Industry" | "Media Industry" | "Men's Accessories" | "Men's Clothing" | "Men's Shoes and Footwear" | "Mental Health" | "Metals Industry" | "Microcar" | "Minivan" | "Motor Insurance" | "Motorcycle Sports" | "Music and Party Video Games" | "Musicals" | "Mutual Funds" | "Nail Care" | "Natural and Organic Beauty" | "Needlework" | "Non-Profit Organizations" | "North America Travel" | "Off-Road Vehicles" | "Oral care" | "Outdoor Attractions" | "Paintball" | "Painting" | "Parenting Babies and Toddlers" | "Parenting Children Aged 4-11" | "Parenting Teens" | "Parks" | "Participant Sports" | "Performance Cars" | "Perfume and Fragrance" | "Personal Loans" | "Pet Insurance" | "Pharmaceutical Industry" | "Phone Services" | "Photography" | "Physical Therapy" | "Pickup Trucks" | "Polar Travel" | "Political Issues & Policy" | "Postgraduate Education" | "Power and Energy Industry" | "Programming Languages" | "Public Radio" | "Publishing Industry" | "Puzzle Video Games" | "Racing Video Games" | "Rail Travel" | "Real Estate Industry" | "Reproductive Health" | "Resume Writing and Advice" | "Retail Industry" | "Road Trips" | "Role-Playing Video Games" | "Roleplaying Games" | "Rugby League" | "Rugby Union" | "Running and Jogging" | "SUV" | "Sales" | "Scrapbooking" | "Screenwriting" | "Scuba Diving" | "Sedan" | "Sexual Health" | "Shaving" | "Simulation Video Games" | "Skateboarding" | "Skin Care" | "Skin and Dermatology" | "Sleep Disorders" | "Small and Medium-sized Business" | "Smartphones" | "Smoking Cessation" | "Snowboarding" | "Soft AC Music" | "Soft Rock" | "South America Travel" | "Spas" | "Special Needs Kids" | "Sports Video Games" | "Stamps and Coins" | "Standardized Testing" | "Startups" | "Station Wagon" | "Stocks and Bonds" | "Strategy Video Games" | "Student Financial Aid" | "Student Loans" | "Substance Abuse" | "Summer Olympic Sports" | "Surfing and Bodyboarding" | "Tablets and E-readers" | "Technology Industry" | "Telecommunications Industry" | "Travel Insurance" | "Undergraduate Education" | "Urban AC Music" | "Van" | "Video Production" | "Water Services" | "Waterskiing and Wakeboarding" | "Wearable Technology" | "Winter Olympic Sports" | "Women's Accessories" | "Women's Clothing" | "Women's Shoes and Footwear" | "Woodworking"; iabTier4?: "Real Estate" | "Insurance" | "Entertainment" | "Consumer Electronics" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" | "Action/Adventure" | "Adult & Explicit Sexual Content" | "Adult Album Alternative" | "Adult Contemporary Music" | "Adult Education" | "Agnosticism" | "Alcoholic Beverages" | "Alternative Music" | "American Football" | "Amusement and Theme Parks" | "Animation & Anime" | "Anniversary" | "Antiquing and Antiques" | "Apartments" | "Apprenticeships" | "Arms & Ammunition" | "Art and Photography" | "Artificial Intelligence" | "Arts and Crafts" | "Astrology" | "Atheism" | "Augmented Reality" | "Australian Rules Football" | "Auto Body Styles" | "Auto Buying and Selling" | "Auto Insurance" | "Auto Parts" | "Auto Racing" | "Auto Recalls" | "Auto Rentals" | "Auto Repair" | "Auto Safety" | "Auto Shows" | "Auto Technology" | "Auto Type" | "Awards Shows" | "Baby Shower" | "Bachelor Party" | "Bachelorette Party" | "Badminton" | "Barbecues and Grilling" | "Bars & Restaurants" | "Baseball" | "Basketball" | "Beach Volleyball" | "Beauty" | "Beekeeping" | "Bereavement" | "Biographies" | "Biological Sciences" | "Birds" | "Birdwatching" | "Birth" | "Birthday" | "Blues" | "Body Art" | "Bodybuilding" | "Bowling" | "Boxing" | "Buddhism" | "Business" | "Business Expos & Conferences" | "Car Culture" | "Career Advice" | "Career Planning" | "Casinos & Gambling" | "Cats" | "Celebrity Deaths" | "Celebrity Families" | "Celebrity Homes" | "Celebrity Pregnancy" | "Celebrity Relationships" | "Celebrity Scandal" | "Celebrity Style" | "Cheerleading" | "Chemistry" | "Children's Clothing" | "Children's Games and Toys" | "Children's Health" | "Children's Music" | "Christianity" | "Cigars" | "Civic affairs" | "Classic Hits" | "Classical Music" | "Collecting" | "College Education" | "College Radio" | "College Sports" | "Comedy" | "Comedy (Music and Audio)" | "Comics and Graphic Novels" | "Computing" | "Console Games" | "Consumer Banking" | "Contemporary Hits/Pop/Top 40" | "Content Production" | "Cooking" | "Cosmetic Medical Services" | "Costume" | "Country Music" | "Coupons and Discounts" | "Cricket" | "Crime & Harmful Acts to Individuals, Society & Human Right Violations" | "Cycling" | "Dance" | "Dance and Electronic Music" | "Darts" | "Dash Cam Videos" | "Dating" | "Death, Injury, or Military Conflict" | "Debated Sensitive Social Issues" | "Design" | "Designer Clothing" | "Desserts and Baking" | "Developmental Sites" | "Digital Arts" | "Dining Out" | "Disabled Sports" | "Diseases and Conditions" | "Diving" | "Divorce" | "Documentary" | "Dogs" | "Drama" | "Early Childhood Education" | "Economy" | "Educational Assessment" | "Eldercare" | "Elections" | "Environment" | "Equine Sports" | "Extreme Sports" | "Factual" | "Family/Children" | "Fan Conventions" | "Fantasy" | "Fantasy Sports" | "Fashion Trends" | "Fiction" | "Field Hockey" | "Figure Skating" | "Financial Assistance" | "Financial Planning" | "Fine Art Photography" | "Fish and Aquariums" | "Fishing Sports" | "Fitness and Exercise" | "Flower Shopping" | "Food Allergies" | "Food Movements" | "Frugal Living" | "Funeral" | "Games and Puzzles" | "Gardening" | "Genealogy and Ancestry" | "Genetics" | "Geography" | "Geology" | "Gifts and Greetings Cards" | "Golf" | "Gospel Music" | "Graduation" | "Grocery Shopping" | "Gymnastics" | "Hate Speech and Acts of Aggression" | "Healthy Cooking and Eating" | "High Fashion" | "Hinduism" | "Hip Hop Music" | "Historic Site and Landmark Tours" | "History" | "Holiday" | "Holiday Shopping" | "Home Appliances" | "Home Entertaining" | "Home Improvement" | "Home Security" | "Home Utilities" | "Homeschooling" | "Homework and Study" | "Horror" | "Hotel Properties" | "Household Supplies" | "Houses" | "Humor and Satire" | "Hunting and Shooting" | "Ice Hockey" | "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" | "Indoor Environmental Quality" | "Industrial Property" | "Industries" | "Inline Skating" | "Inspirational/New Age Music" | "Interior Decorating" | "Islam" | "Jazz" | "Job Search" | "Judaism" | "Lacrosse" | "Land and Farms" | "Landscaping" | "Language Learning" | "Large Animals" | "Lifestyle" | "Lotteries and Scratchcards" | "Magic and Illusion" | "Malls & Shopping Centers" | "Marriage and Civil Unions" | "Martial Arts" | "Medical Tests" | "Men's Fashion" | "Men's Health" | "Mobile Games" | "Model Toys" | "Modern Art" | "Motorcycles" | "Movies" | "Museums & Galleries" | "Music" | "Music Video" | "Musical Instruments" | "Mystery" | "National & Civic Holidays" | "Nature" | "Nightclubs" | "Non-Alcoholic Beverages" | "Nutrition" | "Obscenity and Profanity" | "Office Property" | "Oldies/Adult Standards" | "Olympic Sports" | "Online Education" | "Online Piracy" | "Opera" | "Outdoor Decorating" | "PC Games" | "Paranormal Phenomena" | "Parenting" | "Party Supplies and Decorations" | "Personal Care" | "Personal Debt" | "Personal Investing" | "Personal Taxes" | "Pet Adoptions" | "Pet Supplies" | "Pharmaceutical Drugs" | "Physics" | "Poetry" | "Poker and Professional Gambling" | "Primary Education" | "Private School" | "Prom" | "R&B/Soul/Funk" | "Radio Control" | "Real Estate Buying and Selling" | "Real Estate Renting and Leasing" | "Reality TV" | "Reggae" | "Religious (Music and Audio)" | "Remodeling & Construction" | "Remote Working" | "Reptiles" | "Retail Property" | "Retirement Planning" | "Road-Side Assistance" | "Robotics" | "Rock Music" | "Rodeo" | "Romance" | "Rowing" | "Rugby" | "Sailing" | "Sales and Promotions" | "Sci-fi and Fantasy" | "Science Fiction" | "Scooters" | "Secondary Education" | "Senior Health" | "Sikhism" | "Single Life" | "Skiing" | "Smart Home" | "Snooker/Pool/Billiards" | "Soap Opera" | "Soccer" | "Softball" | "Songwriters/Folk" | "Soundtracks, TV and Showtunes" | "Space and Astronomy" | "Spam or Harmful Content" | "Special Education" | "Special Interest (Indie/Art House)" | "Spirituality" | "Sports Equipment" | "Sports Radio" | "Squash" | "Street Style" | "Surgery" | "Swimming" | "Table Tennis" | "Talk Radio" | "Talk Show" | "Television" | "Tennis" | "Terrorism" | "Theater" | "Theater Venues" | "Thriller" | "Track and Field" | "Travel Accessories" | "Travel Locations" | "Travel Preparation and Advice" | "Travel Type" | "True Crime" | "Urban Contemporary Music" | "Vacation Properties" | "Vaccines" | "Variety (Music and Audio)" | "Vegan Diets" | "Vegetarian Diets" | "Veterinary Medicine" | "Video Game Genres" | "Virtual Reality" | "Vocational Training" | "Volleyball" | "Walking" | "Water Polo" | "Weather" | "Wedding" | "Weight Loss" | "Weightlifting" | "Wellness" | "Western" | "Women's Fashion" | "Women's Health" | "Workshops and Classes" | "World Cuisines" | "World/International Music" | "Wrestling" | "Young Adult" | "Zoos & Aquariums" | "eSports" | "Action Video Games" | "Action-Adventure Video Games" | "Adoption and Fostering" | "Adult Video Games" | "Adventure Travel" | "Adventure Video Games" | "Advertising Industry" | "Africa Travel" | "Agriculture" | "Air Travel" | "Album-oriented Rock" | "Allergies" | "Alternative Medicine" | "Alternative Rock" | "Apparel Industry" | "Asia Travel" | "Audio Production" | "Australia and Oceania Travel" | "Auto Infotainment Technologies" | "Auto Navigation Systems" | "Auto Safety Technologies" | "Automotive Industry" | "Aviation Industry" | "Bath and Shower" | "Beach Travel" | "Beadwork" | "Bed & Breakfasts" | "Biotech and Biomedical Industry" | "Blood Disorders" | "Board Games and Puzzles" | "Bone and Joint Conditions" | "Brain and Nervous System Disorders" | "Budget Cars" | "Budget Travel" | "Business Accounting & Finance" | "Business Administration" | "Business Banking & Finance" | "Business I.T." | "Business Operations" | "Business Travel" | "Business Utilities" | "Cameras and Camcorders" | "Camping" | "Cancer" | "Candle and Soap Making" | "Canoeing and Kayaking" | "Card Games" | "Casino and Gambling Video Games" | "Casual Games" | "Certified Pre-Owned Cars" | "Civil Engineering Industry" | "Classic Cars" | "Classic Rock" | "Climbing" | "Cold and Flu" | "College Baseball" | "College Basketball" | "College Football" | "College Planning" | "Comic Books" | "Commercial Trucks" | "Commodities" | "Computer Networking" | "Computer Peripherals" | "Concept Cars" | "Construction Industry" | "Consumer Issues" | "Convertible" | "Coupe" | "Credit Cards" | "Crossover" | "Cruises" | "Currencies" | "Data Storage and Warehousing" | "Day Trips" | "Daycare and Pre-School" | "Defense Industry" | "Dental Health" | "Deodorant and Antiperspirant" | "Desktops" | "Diabetes" | "Digestive Disorders" | "Drawing and Sketching" | "Driverless Cars" | "Ear, Nose and Throat Conditions" | "Education industry" | "Educational Video Games" | "Endocrine and Metabolic Diseases" | "Entertainment Industry" | "Environmental Services Industry" | "Europe Travel" | "Executive Leadership & Management" | "Exercise and Fitness Video Games" | "Eye and Vision Conditions" | "Family Travel" | "Family Video Games" | "Financial Crisis" | "Financial Industry" | "Financial Reform" | "Financial Regulation" | "Food Industry" | "Foot Health" | "Freelance Writing" | "Gas and Electric" | "Gasoline Prices" | "Government Business" | "Government Support and Welfare" | "Green Solutions" | "Green Vehicles" | "Hair Care" | "Hard Rock" | "Hatchback" | "Health Insurance" | "Healthcare Industry" | "Heart and Cardiovascular Diseases" | "Hedge Funds" | "Home Entertainment Systems" | "Home Financing" | "Home Insurance" | "Honeymoons and Getaways" | "Horror Video Games" | "Horse Racing" | "Hospitality Industry" | "Hotels and Motels" | "Housing Market" | "Human Resources" | "Infectious Diseases" | "Information Services Industry" | "Information and Network Security" | "Injuries" | "Interest Rates" | "Internet" | "Internet Safety" | "Internet Service Providers" | "Jewelry Making" | "Job Fairs" | "Job Market" | "Laptops" | "Large Business" | "Legal Services Industry" | "Life Insurance" | "Logistics" | "Logistics and Transportation Industry" | "Lung and Respiratory Health" | "Luxury Cars" | "MMOs" | "Makeup and Accessories" | "Management Consulting Industry" | "Manufacturing Industry" | "Marketing and Advertising" | "Mechanical and Industrial Engineering Industry" | "Media Industry" | "Men's Accessories" | "Men's Clothing" | "Men's Shoes and Footwear" | "Mental Health" | "Metals Industry" | "Microcar" | "Minivan" | "Motor Insurance" | "Motorcycle Sports" | "Music and Party Video Games" | "Musicals" | "Mutual Funds" | "Nail Care" | "Natural and Organic Beauty" | "Needlework" | "Non-Profit Organizations" | "North America Travel" | "Off-Road Vehicles" | "Oral care" | "Outdoor Attractions" | "Paintball" | "Painting" | "Parenting Babies and Toddlers" | "Parenting Children Aged 4-11" | "Parenting Teens" | "Parks" | "Participant Sports" | "Performance Cars" | "Perfume and Fragrance" | "Personal Loans" | "Pet Insurance" | "Pharmaceutical Industry" | "Phone Services" | "Photography" | "Physical Therapy" | "Pickup Trucks" | "Polar Travel" | "Political Issues & Policy" | "Postgraduate Education" | "Power and Energy Industry" | "Programming Languages" | "Public Radio" | "Publishing Industry" | "Puzzle Video Games" | "Racing Video Games" | "Rail Travel" | "Real Estate Industry" | "Reproductive Health" | "Resume Writing and Advice" | "Retail Industry" | "Road Trips" | "Role-Playing Video Games" | "Roleplaying Games" | "Rugby League" | "Rugby Union" | "Running and Jogging" | "SUV" | "Sales" | "Scrapbooking" | "Screenwriting" | "Scuba Diving" | "Sedan" | "Sexual Health" | "Shaving" | "Simulation Video Games" | "Skateboarding" | "Skin Care" | "Skin and Dermatology" | "Sleep Disorders" | "Small and Medium-sized Business" | "Smartphones" | "Smoking Cessation" | "Snowboarding" | "Soft AC Music" | "Soft Rock" | "South America Travel" | "Spas" | "Special Needs Kids" | "Sports Video Games" | "Stamps and Coins" | "Standardized Testing" | "Startups" | "Station Wagon" | "Stocks and Bonds" | "Strategy Video Games" | "Student Financial Aid" | "Student Loans" | "Substance Abuse" | "Summer Olympic Sports" | "Surfing and Bodyboarding" | "Tablets and E-readers" | "Technology Industry" | "Telecommunications Industry" | "Travel Insurance" | "Undergraduate Education" | "Urban AC Music" | "Van" | "Video Production" | "Water Services" | "Waterskiing and Wakeboarding" | "Wearable Technology" | "Winter Olympic Sports" | "Women's Accessories" | "Women's Clothing" | "Women's Shoes and Footwear" | "Woodworking" | "3-D Graphics" | "Angel Investment" | "Antivirus Software" | "Bankruptcy" | "Birth Control" | "Browsers" | "Business Loans" | "Cloud Computing" | "Computer Animation" | "Databases" | "Debt Factoring & Invoice Discounting" | "Desktop Publishing" | "Digital Audio" | "Email" | "First Aid" | "Graphics Software" | "Herbs and Supplements" | "Holistic Health" | "Hormonal Disorders" | "IT and Internet Support" | "Infertility" | "Internet for Beginners" | "Internet of Things" | "Men's Business Wear" | "Men's Casual Wear" | "Men's Formal Wear" | "Men's Jewelry and Watches" | "Men's Outerwear" | "Men's Sportswear" | "Men's Underwear and Sleepwear" | "Menopause" | "Mergers and Acquisitions" | "Operating Systems" | "Options" | "Photo Editing Software" | "Pregnancy" | "Private Equity" | "Professional School" | "Recalls" | "Sale & Lease Back" | "Search" | "Sexual Conditions" | "Shareware and Freeware" | "Social Networking" | "Software and Applications" | "Thyroid Disorders" | "Venture Capital" | "Video Software" | "Web Conferencing" | "Web Design and HTML" | "Web Development" | "Web Hosting" | "Women's Business Wear" | "Women's Casual Wear" | "Women's Formal Wear" | "Women's Glasses" | "Women's Handbags and Wallets" | "Women's Hats and Scarves" | "Women's Intimates and Sleepwear" | "Women's Jewelry and Watches" | "Women's Outerwear" | "Women's Sportswear"; companies?: string[]; publishStart?: Date; publishEnd?: Date; visitedStart?: Date; visitedEnd?: Date; certain?: boolean; includeNetlocs?: string[]; excludeNetlocs?: string[]; includeCompanies?: string[]; excludeCompanies?: string[]; includeDocs?: string[]; excludeDocs?: string[]; }; rateLimit?: boolean; }
Configuration options. Can be a string API key or an object with detailed configuration.
apiKey?
string = ...
Your Nosible API key
llmApiKey?
string = ...
Optional OpenRouter API key for LLM features
openAiBaseURL?
string = ...
Optional custom OpenAI base URL
sentimentModel?
string = ...
expansionsModel?
string = ...
searchDefaults?
{ autoGenerateExpansions?: boolean; expansions?: string[]; sqlFilter?: string; algorithm?: "string" | "baseline" | "lexical" | "hamming" | "hybrid-1" | "hybrid-2" | "hybrid-3" | "company"; nResults?: number; nProbes?: number; nContextify?: number; minSimilarity?: number; mustInclude?: string[]; mustExclude?: string[]; brandSafety?: "Safe" | "Sensitive" | "Unsafe"; language?: "af" | "am" | "ar" | "as" | "az" | "be" | "bg" | "bn" | "br" | "bs" | "ca" | "cs" | "cy" | "da" | "de" | "el" | "en" | "eo" | "es" | "et" | "eu" | "fa" | "fi" | "fr" | "fy" | "ga" | "gd" | "gl" | "gu" | "ha" | "he" | "hi" | "hr" | "hu" | "hy" | "id" | "is" | "it" | "ja" | "jv" | "ka" | "kk" | "km" | "kn" | "ko" | "ku" | "ky" | "la" | "lo" | "lt" | "lv" | "mg" | "mk" | "ml" | "mn" | "mr" | "ms" | "my" | "ne" | "nl" | "no" | "om" | "or" | "pa" | "pl" | "ps" | "pt" | "ro" | "ru" | "sa" | "sd" | "sh" | "si" | "sk" | "sl" | "so" | "sq" | "sr" | "su" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "ug" | "uk" | "ur" | "uz" | "vi" | "xh" | "yi" | "zh"; continent?: "Africa" | "Asia" | "Europe" | "North America" | "Oceania" | "South America" | "Worldwide"; region?: "North America" | "Oceania" | "South America" | "Worldwide" | "Caribbean" | "Central Africa" | "Central America" | "Central Asia" | "Central Europe" | "East Africa" | "East Asia" | "Eastern Europe" | "Middle East" | "North Africa" | "Northern Europe" | "South Asia" | "Southeast Asia" | "Southern Africa" | "Southern Europe" | "Sub-Saharan Africa" | "The Amazon Basin" | "The Andes" | "The Arctic Region" | "The Balkans" | "The Caucasus" | "The Horn of Africa" | "The Levant" | "The Middle East" | "The Sahel" | "West Africa" | "Western Europe"; country?: "Worldwide" | "Afghanistan" | "Albania" | "Algeria" | "Andorra" | "Angola" | "Antigua and Barbuda" | "Argentina" | "Armenia" | "Australia" | "Austria" | "Azerbaijan" | "Bahamas" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bhutan" | "Bolivia" | "Bosnia and Herzegovina" | "Botswana" | "Brazil" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cabo Verde" | "Cambodia" | "Cameroon" | "Canada" | "Central African Republic" | "Chad" | "Chile" | "China" | "Colombia" | "Comoros" | "Congo (Congo-Brazzaville)" | "Costa Rica" | "Croatia" | "Cuba" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Eswatini" | "Ethiopia" | "Fiji" | "Finland" | "France" | "Gabon" | "Gambia" | "Georgia" | "Germany" | "Ghana" | "Greece" | "Grenada" | "Guatemala" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Honduras" | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Marshall Islands" | "Mauritania" | "Mauritius" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "North Korea" | "North Macedonia" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Panama" | "Papua New Guinea" | "Paraguay" | "Peru" | "Philippines" | "Poland" | "Portugal" | "Qatar" | "Romania" | "Russia" | "Rwanda" | "Saint Kitts and Nevis" | "Saint Lucia" | "Saint Vincent and the Grenadines" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "Timor-Leste" | "Togo" | "Tonga" | "Trinidad and Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City" | "Venezuela" | "Vietnam" | "Yemen" | "Zambia" | "Zimbabwe"; sector?: "Other" | "Communication Services" | "Consumer Discretionary" | "Consumer Staples" | "Energy" | "Financials" | "Health Care" | "Industrials" | "Information Technology" | "Materials" | "Real Estate" | "Utilities"; industryGroup?: "Other" | "Energy" | "Materials" | "Utilities" | "Automobiles & Components" | "Banks" | "Capital Goods" | "Commercial & Professional Services" | "Consumer Discretionary Distribution & Retail" | "Consumer Durables & Apparel" | "Consumer Services" | "Consumer Staples Distribution & Retail" | "Equity Real Estate Investment Trusts (REITs)" | "Financial Services" | "Food, Beverage & Tobacco" | "Health Care Equipment & Services" | "Household & Personal Products" | "Insurance" | "Media & Entertainment" | "Pharmaceuticals, Biotechnology & Life Sciences" | "Real Estate Management & Development" | "Semiconductors & Semiconductor Equipment" | "Software & Services" | "Technology Hardware & Equipment" | "Telecommunication Services" | "Transportation"; industry?: "Other" | "Banks" | "Consumer Staples Distribution & Retail" | "Financial Services" | "Insurance" | "Real Estate Management & Development" | "Semiconductors & Semiconductor Equipment" | "Aerospace & Defense" | "Air Freight & Logistics" | "Automobile Components" | "Automobiles" | "Beverages" | "Biotechnology" | "Broadline Retail" | "Building Products" | "Capital Markets" | "Chemicals" | "Commercial Services & Supplies" | "Communications Equipment" | "Construction & Engineering" | "Construction Materials" | "Consumer Finance" | "Containers & Packaging" | "Distributors" | "Diversified Consumer Services" | "Diversified REITs" | "Diversified Telecommunication Services" | "Electric Utilities" | "Electrical Equipment" | "Electronic Equipment, Instruments & Components" | "Energy Equipment & Services" | "Entertainment" | "Food Products" | "Gas Utilities" | "Ground Transportation" | "Health Care Equipment & Supplies" | "Health Care Providers & Services" | "Health Care REITs" | "Health Care Technology" | "Hotel & Resort REITs" | "Hotels, Restaurants & Leisure" | "Household Durables" | "Household Products" | "IT Services" | "Independent Power and Renewable Electricity Producers" | "Industrial Conglomerates" | "Industrial REITs" | "Interactive Media & Services" | "Leisure Products" | "Life Sciences Tools & Services" | "Machinery" | "Marine Transportation" | "Media" | "Metals & Mining" | "Mortgage Real Estate Investment Trusts (REITs)" | "Multi-Utilities" | "Office REITs" | "Oil, Gas & Consumable Fuels" | "Paper & Forest Products" | "Passenger Airlines" | "Personal Care Products" | "Pharmaceuticals" | "Professional Services" | "Residential REITs" | "Retail REITs" | "Software" | "Specialized REITs" | "Specialty Retail" | "Technology Hardware, Storage & Peripherals" | "Textiles, Apparel & Luxury Goods" | "Tobacco" | "Trading Companies & Distributors" | "Transportation Infrastructure" | "Water Utilities" | "Wireless Telecommunication Services"; subIndustry?: "Other" | "Aerospace & Defense" | "Air Freight & Logistics" | "Biotechnology" | "Broadline Retail" | "Building Products" | "Communications Equipment" | "Construction & Engineering" | "Construction Materials" | "Consumer Finance" | "Distributors" | "Electric Utilities" | "Gas Utilities" | "Health Care Technology" | "Household Products" | "Industrial Conglomerates" | "Interactive Media & Services" | "Leisure Products" | "Life Sciences Tools & Services" | "Marine Transportation" | "Multi-Utilities" | "Passenger Airlines" | "Personal Care Products" | "Pharmaceuticals" | "Technology Hardware, Storage & Peripherals" | "Tobacco" | "Trading Companies & Distributors" | "Water Utilities" | "Wireless Telecommunication Services" | "Advertising" | "Agricultural & Farm Machinery" | "Agricultural Products & Services" | "Airport Services" | "Alternative Carriers" | "Aluminum" | "Apparel Retail" | "Apparel, Accessories & Luxury Goods" | "Application Software" | "Asset Management & Custody Banks" | "Automobile Manufacturers" | "Automotive Parts & Equipment" | "Automotive Retail" | "Brewers" | "Broadcasting" | "Cable & Satellite" | "Cargo Ground Transportation" | "Casinos & Gaming" | "Coal & Consumable Fuels" | "Commercial & Residential Mortgage Finance" | "Commercial Printing" | "Commodity Chemicals" | "Computer & Electronics Retail" | "Construction Machinery & Heavy Transportation Equipment" | "Consumer Electronics" | "Consumer Staples Merchandise Retail" | "Copper" | "Data Center REITs*" | "Data Processing & Outsourced Services" | "Distillers & Vintners" | "Diversified Banks" | "Diversified Capital Markets" | "Diversified Chemicals" | "Diversified Financial Services" | "Diversified Metals & Mining" | "Diversified REITs*" | "Diversified Real Estate Activities" | "Diversified Support Services" | "Drug Retail" | "Education Services" | "Electrical Components & Equipment" | "Electronic Components" | "Electronic Equipment & Instruments " | "Electronic Manufacturing Services" | "Environmental & Facilities Services" | "Fertilizers & Agricultural Chemicals" | "Financial Exchanges & Data" | "Food Distributors" | "Food Retail" | "Footwear" | "Forest Products" | "Gold" | "Health Care Distributors" | "Health Care Equipment" | "Health Care Facilities" | "Health Care REITs*" | "Health Care Services" | "Health Care Supplies" | "Heavy Electrical Equipment" | "Highways & Railtracks" | "Home Furnishings" | "Home Improvement Retail" | "Homebuilding" | "Homefurnishing Retail" | "Hotel & Resort REITs*" | "Hotels, Resorts & Cruise Lines" | "Household Appliances" | "Housewares & Specialties" | "Human Resource & Employment Services" | "IT Consulting & Other Services" | "Independent Power Producers & Energy Traders" | "Industrial Gases" | "Industrial Machinery & Supplies & Components" | "Industrial REITs*" | "Insurance Brokers" | "Integrated Oil & Gas" | "Integrated Telecommunication Services" | "Interactive Home Entertainment" | "Internet Services & Infrastructure" | "Investment Banking & Brokerage" | "Leisure Facilities" | "Life & Health Insurance" | "Managed Health Care" | "Marine Ports & Services" | "Metal, Glass & Plastic Containers " | "Mortgage REITs*" | "Motorcycle Manufacturers" | "Movies & Entertainment" | "Multi-Family Residential REITs*" | "Multi-Sector Holdings" | "Multi-line Insurance" | "Office REITs*" | "Office Services & Supplies" | "Oil & Gas Drilling" | "Oil & Gas Equipment & Services" | "Oil & Gas Exploration & Production" | "Oil & Gas Refining & Marketing" | "Oil & Gas Storage & Transportation" | "Other Specialized REITs*" | "Other Specialty Retail" | "Packaged Foods & Meats" | "Paper & Plastic Packaging Products & Materials" | "Paper Products" | "Passenger Ground Transportation" | "Precious Metals & Minerals" | "Property & Casualty Insurance" | "Publishing" | "Rail Transportation" | "Real Estate Development" | "Real Estate Operating Companies" | "Real Estate Services" | "Regional Banks" | "Reinsurance" | "Renewable Electricity" | "Research & Consulting Services" | "Restaurants" | "Retail REITs*" | "Security & Alarm Services" | "Self-Storage REITs*" | "Semiconductor Materials & Equipment" | "Semiconductors" | "Silver" | "Single-Family Residential REITs*" | "Soft Drinks & Non-alcoholic Beverages" | "Specialized Consumer Services" | "Specialized Finance" | "Specialty Chemicals" | "Steel" | "Systems Software" | "Technology Distributors" | "Telecom Tower REITs*" | "Textiles" | "Timber REITs*" | "Tires & Rubber" | "Transaction & Payment Processing Services"; iabTier1?: "Real Estate" | "Entertainment" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts"; iabTier2?: "Real Estate" | "Insurance" | "Entertainment" | "Consumer Electronics" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" | "Action/Adventure" | "Adult & Explicit Sexual Content" | "Adult Album Alternative" | "Adult Contemporary Music" | "Adult Education" | "Agnosticism" | "Alcoholic Beverages" | "Alternative Music" | "American Football" | "Amusement and Theme Parks" | "Animation & Anime" | "Anniversary" | "Antiquing and Antiques" | "Apartments" | "Apprenticeships" | "Arms & Ammunition" | "Art and Photography" | "Artificial Intelligence" | "Arts and Crafts" | "Astrology" | "Atheism" | "Augmented Reality" | "Australian Rules Football" | "Auto Body Styles" | "Auto Buying and Selling" | "Auto Insurance" | "Auto Parts" | "Auto Racing" | "Auto Recalls" | "Auto Rentals" | "Auto Repair" | "Auto Safety" | "Auto Shows" | "Auto Technology" | "Auto Type" | "Awards Shows" | "Baby Shower" | "Bachelor Party" | "Bachelorette Party" | "Badminton" | "Barbecues and Grilling" | "Bars & Restaurants" | "Baseball" | "Basketball" | "Beach Volleyball" | "Beauty" | "Beekeeping" | "Bereavement" | "Biographies" | "Biological Sciences" | "Birds" | "Birdwatching" | "Birth" | "Birthday" | "Blues" | "Body Art" | "Bodybuilding" | "Bowling" | "Boxing" | "Buddhism" | "Business" | "Business Expos & Conferences" | "Car Culture" | "Career Advice" | "Career Planning" | "Casinos & Gambling" | "Cats" | "Celebrity Deaths" | "Celebrity Families" | "Celebrity Homes" | "Celebrity Pregnancy" | "Celebrity Relationships" | "Celebrity Scandal" | "Celebrity Style" | "Cheerleading" | "Chemistry" | "Children's Clothing" | "Children's Games and Toys" | "Children's Health" | "Children's Music" | "Christianity" | "Cigars" | "Civic affairs" | "Classic Hits" | "Classical Music" | "Collecting" | "College Education" | "College Radio" | "College Sports" | "Comedy" | "Comedy (Music and Audio)" | "Comics and Graphic Novels" | "Computing" | "Console Games" | "Consumer Banking" | "Contemporary Hits/Pop/Top 40" | "Content Production" | "Cooking" | "Cosmetic Medical Services" | "Costume" | "Country Music" | "Coupons and Discounts" | "Cricket" | "Crime & Harmful Acts to Individuals, Society & Human Right Violations" | "Cycling" | "Dance" | "Dance and Electronic Music" | "Darts" | "Dash Cam Videos" | "Dating" | "Death, Injury, or Military Conflict" | "Debated Sensitive Social Issues" | "Design" | "Designer Clothing" | "Desserts and Baking" | "Developmental Sites" | "Digital Arts" | "Dining Out" | "Disabled Sports" | "Diseases and Conditions" | "Diving" | "Divorce" | "Documentary" | "Dogs" | "Drama" | "Early Childhood Education" | "Economy" | "Educational Assessment" | "Eldercare" | "Elections" | "Environment" | "Equine Sports" | "Extreme Sports" | "Factual" | "Family/Children" | "Fan Conventions" | "Fantasy" | "Fantasy Sports" | "Fashion Trends" | "Fiction" | "Field Hockey" | "Figure Skating" | "Financial Assistance" | "Financial Planning" | "Fine Art Photography" | "Fish and Aquariums" | "Fishing Sports" | "Fitness and Exercise" | "Flower Shopping" | "Food Allergies" | "Food Movements" | "Frugal Living" | "Funeral" | "Games and Puzzles" | "Gardening" | "Genealogy and Ancestry" | "Genetics" | "Geography" | "Geology" | "Gifts and Greetings Cards" | "Golf" | "Gospel Music" | "Graduation" | "Grocery Shopping" | "Gymnastics" | "Hate Speech and Acts of Aggression" | "Healthy Cooking and Eating" | "High Fashion" | "Hinduism" | "Hip Hop Music" | "Historic Site and Landmark Tours" | "History" | "Holiday" | "Holiday Shopping" | "Home Appliances" | "Home Entertaining" | "Home Improvement" | "Home Security" | "Home Utilities" | "Homeschooling" | "Homework and Study" | "Horror" | "Hotel Properties" | "Household Supplies" | "Houses" | "Humor and Satire" | "Hunting and Shooting" | "Ice Hockey" | "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" | "Indoor Environmental Quality" | "Industrial Property" | "Industries" | "Inline Skating" | "Inspirational/New Age Music" | "Interior Decorating" | "Islam" | "Jazz" | "Job Search" | "Judaism" | "Lacrosse" | "Land and Farms" | "Landscaping" | "Language Learning" | "Large Animals" | "Lifestyle" | "Lotteries and Scratchcards" | "Magic and Illusion" | "Malls & Shopping Centers" | "Marriage and Civil Unions" | "Martial Arts" | "Medical Tests" | "Men's Fashion" | "Men's Health" | "Mobile Games" | "Model Toys" | "Modern Art" | "Motorcycles" | "Movies" | "Museums & Galleries" | "Music" | "Music Video" | "Musical" | "Musical Instruments" | "Mystery" | "National & Civic Holidays" | "Nature" | "Nightclubs" | "Non-Alcoholic Beverages" | "Nutrition" | "Obscenity and Profanity" | "Office Property" | "Oldies/Adult Standards" | "Olympic Sports" | "Online Education" | "Online Piracy" | "Opera" | "Outdoor Activities" | "Outdoor Decorating" | "PC Games" | "Paranormal Phenomena" | "Parenting" | "Parks & Nature" | "Party Supplies and Decorations" | "Personal Care" | "Personal Debt" | "Personal Investing" | "Personal Taxes" | "Pet Adoptions" | "Pet Supplies" | "Pharmaceutical Drugs" | "Physics" | "Poetry" | "Poker and Professional Gambling" | "Political Issues & policy" | "Primary Education" | "Private School" | "Prom" | "R&B/Soul/Funk" | "Radio Control" | "Real Estate Buying and Selling" | "Real Estate Renting and Leasing" | "Reality TV" | "Reggae" | "Religious (Music and Audio)" | "Remodeling & Construction" | "Remote Working" | "Reptiles" | "Retail Property" | "Retirement Planning" | "Road-Side Assistance" | "Robotics" | "Rock Music" | "Rodeo" | "Romance" | "Rowing" | "Rugby" | "Sailing" | "Sales and Promotions" | "Sci-fi and Fantasy" | "Science Fiction" | "Scooters" | "Secondary Education" | "Senior Health" | "Sikhism" | "Single Life" | "Skiing" | "Smart Home" | "Snooker/Pool/Billiards" | "Soap Opera" | "Soccer" | "Softball" | "Songwriters/Folk" | "Soundtracks, TV and Showtunes" | "Space and Astronomy" | "Spam or Harmful Content" | "Special Education" | "Special Interest (Indie/Art House)" | "Spirituality" | "Sports Equipment" | "Sports Radio" | "Squash" | "Street Style" | "Surgery" | "Swimming" | "Table Tennis" | "Talk Radio" | "Talk Show" | "Television" | "Tennis" | "Terrorism" | "Theater" | "Theater Venues" | "Thriller" | "Track and Field" | "Travel Accessories" | "Travel Locations" | "Travel Preparation and Advice" | "Travel Type" | "True Crime" | "Urban Contemporary Music" | "Vacation Properties" | "Vaccines" | "Variety (Music and Audio)" | "Vegan Diets" | "Vegetarian Diets" | "Veterinary Medicine" | "Video Game Genres" | "Virtual Reality" | "Vocational Training" | "Volleyball" | "Walking" | "Water Polo" | "Weather" | "Wedding" | "Weight Loss" | "Weightlifting" | "Wellness" | "Western" | "Women's Fashion" | "Women's Health" | "Workshops and Classes" | "World Cuisines" | "World/International Music" | "Wrestling" | "Young Adult" | "Zoos & Aquariums" | "eSports"; iabTier3?: "Real Estate" | "Insurance" | "Entertainment" | "Consumer Electronics" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" | "Action/Adventure" | "Adult & Explicit Sexual Content" | "Adult Album Alternative" | "Adult Contemporary Music" | "Adult Education" | "Agnosticism" | "Alcoholic Beverages" | "Alternative Music" | "American Football" | "Amusement and Theme Parks" | "Animation & Anime" | "Anniversary" | "Antiquing and Antiques" | "Apartments" | "Apprenticeships" | "Arms & Ammunition" | "Art and Photography" | "Artificial Intelligence" | "Arts and Crafts" | "Astrology" | "Atheism" | "Augmented Reality" | "Australian Rules Football" | "Auto Body Styles" | "Auto Buying and Selling" | "Auto Insurance" | "Auto Parts" | "Auto Racing" | "Auto Recalls" | "Auto Rentals" | "Auto Repair" | "Auto Safety" | "Auto Shows" | "Auto Technology" | "Auto Type" | "Awards Shows" | "Baby Shower" | "Bachelor Party" | "Bachelorette Party" | "Badminton" | "Barbecues and Grilling" | "Bars & Restaurants" | "Baseball" | "Basketball" | "Beach Volleyball" | "Beauty" | "Beekeeping" | "Bereavement" | "Biographies" | "Biological Sciences" | "Birds" | "Birdwatching" | "Birth" | "Birthday" | "Blues" | "Body Art" | "Bodybuilding" | "Bowling" | "Boxing" | "Buddhism" | "Business" | "Business Expos & Conferences" | "Car Culture" | "Career Advice" | "Career Planning" | "Casinos & Gambling" | "Cats" | "Celebrity Deaths" | "Celebrity Families" | "Celebrity Homes" | "Celebrity Pregnancy" | "Celebrity Relationships" | "Celebrity Scandal" | "Celebrity Style" | "Cheerleading" | "Chemistry" | "Children's Clothing" | "Children's Games and Toys" | "Children's Health" | "Children's Music" | "Christianity" | "Cigars" | "Civic affairs" | "Classic Hits" | "Classical Music" | "Collecting" | "College Education" | "College Radio" | "College Sports" | "Comedy" | "Comedy (Music and Audio)" | "Comics and Graphic Novels" | "Computing" | "Console Games" | "Consumer Banking" | "Contemporary Hits/Pop/Top 40" | "Content Production" | "Cooking" | "Cosmetic Medical Services" | "Costume" | "Country Music" | "Coupons and Discounts" | "Cricket" | "Crime & Harmful Acts to Individuals, Society & Human Right Violations" | "Cycling" | "Dance" | "Dance and Electronic Music" | "Darts" | "Dash Cam Videos" | "Dating" | "Death, Injury, or Military Conflict" | "Debated Sensitive Social Issues" | "Design" | "Designer Clothing" | "Desserts and Baking" | "Developmental Sites" | "Digital Arts" | "Dining Out" | "Disabled Sports" | "Diseases and Conditions" | "Diving" | "Divorce" | "Documentary" | "Dogs" | "Drama" | "Early Childhood Education" | "Economy" | "Educational Assessment" | "Eldercare" | "Elections" | "Environment" | "Equine Sports" | "Extreme Sports" | "Factual" | "Family/Children" | "Fan Conventions" | "Fantasy" | "Fantasy Sports" | "Fashion Trends" | "Fiction" | "Field Hockey" | "Figure Skating" | "Financial Assistance" | "Financial Planning" | "Fine Art Photography" | "Fish and Aquariums" | "Fishing Sports" | "Fitness and Exercise" | "Flower Shopping" | "Food Allergies" | "Food Movements" | "Frugal Living" | "Funeral" | "Games and Puzzles" | "Gardening" | "Genealogy and Ancestry" | "Genetics" | "Geography" | "Geology" | "Gifts and Greetings Cards" | "Golf" | "Gospel Music" | "Graduation" | "Grocery Shopping" | "Gymnastics" | "Hate Speech and Acts of Aggression" | "Healthy Cooking and Eating" | "High Fashion" | "Hinduism" | "Hip Hop Music" | "Historic Site and Landmark Tours" | "History" | "Holiday" | "Holiday Shopping" | "Home Appliances" | "Home Entertaining" | "Home Improvement" | "Home Security" | "Home Utilities" | "Homeschooling" | "Homework and Study" | "Horror" | "Hotel Properties" | "Household Supplies" | "Houses" | "Humor and Satire" | "Hunting and Shooting" | "Ice Hockey" | "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" | "Indoor Environmental Quality" | "Industrial Property" | "Industries" | "Inline Skating" | "Inspirational/New Age Music" | "Interior Decorating" | "Islam" | "Jazz" | "Job Search" | "Judaism" | "Lacrosse" | "Land and Farms" | "Landscaping" | "Language Learning" | "Large Animals" | "Lifestyle" | "Lotteries and Scratchcards" | "Magic and Illusion" | "Malls & Shopping Centers" | "Marriage and Civil Unions" | "Martial Arts" | "Medical Tests" | "Men's Fashion" | "Men's Health" | "Mobile Games" | "Model Toys" | "Modern Art" | "Motorcycles" | "Movies" | "Museums & Galleries" | "Music" | "Music Video" | "Musical Instruments" | "Mystery" | "National & Civic Holidays" | "Nature" | "Nightclubs" | "Non-Alcoholic Beverages" | "Nutrition" | "Obscenity and Profanity" | "Office Property" | "Oldies/Adult Standards" | "Olympic Sports" | "Online Education" | "Online Piracy" | "Opera" | "Outdoor Decorating" | "PC Games" | "Paranormal Phenomena" | "Parenting" | "Party Supplies and Decorations" | "Personal Care" | "Personal Debt" | "Personal Investing" | "Personal Taxes" | "Pet Adoptions" | "Pet Supplies" | "Pharmaceutical Drugs" | "Physics" | "Poetry" | "Poker and Professional Gambling" | "Primary Education" | "Private School" | "Prom" | "R&B/Soul/Funk" | "Radio Control" | "Real Estate Buying and Selling" | "Real Estate Renting and Leasing" | "Reality TV" | "Reggae" | "Religious (Music and Audio)" | "Remodeling & Construction" | "Remote Working" | "Reptiles" | "Retail Property" | "Retirement Planning" | "Road-Side Assistance" | "Robotics" | "Rock Music" | "Rodeo" | "Romance" | "Rowing" | "Rugby" | "Sailing" | "Sales and Promotions" | "Sci-fi and Fantasy" | "Science Fiction" | "Scooters" | "Secondary Education" | "Senior Health" | "Sikhism" | "Single Life" | "Skiing" | "Smart Home" | "Snooker/Pool/Billiards" | "Soap Opera" | "Soccer" | "Softball" | "Songwriters/Folk" | "Soundtracks, TV and Showtunes" | "Space and Astronomy" | "Spam or Harmful Content" | "Special Education" | "Special Interest (Indie/Art House)" | "Spirituality" | "Sports Equipment" | "Sports Radio" | "Squash" | "Street Style" | "Surgery" | "Swimming" | "Table Tennis" | "Talk Radio" | "Talk Show" | "Television" | "Tennis" | "Terrorism" | "Theater" | "Theater Venues" | "Thriller" | "Track and Field" | "Travel Accessories" | "Travel Locations" | "Travel Preparation and Advice" | "Travel Type" | "True Crime" | "Urban Contemporary Music" | "Vacation Properties" | "Vaccines" | "Variety (Music and Audio)" | "Vegan Diets" | "Vegetarian Diets" | "Veterinary Medicine" | "Video Game Genres" | "Virtual Reality" | "Vocational Training" | "Volleyball" | "Walking" | "Water Polo" | "Weather" | "Wedding" | "Weight Loss" | "Weightlifting" | "Wellness" | "Western" | "Women's Fashion" | "Women's Health" | "Workshops and Classes" | "World Cuisines" | "World/International Music" | "Wrestling" | "Young Adult" | "Zoos & Aquariums" | "eSports" | "Action Video Games" | "Action-Adventure Video Games" | "Adoption and Fostering" | "Adult Video Games" | "Adventure Travel" | "Adventure Video Games" | "Advertising Industry" | "Africa Travel" | "Agriculture" | "Air Travel" | "Album-oriented Rock" | "Allergies" | "Alternative Medicine" | "Alternative Rock" | "Apparel Industry" | "Asia Travel" | "Audio Production" | "Australia and Oceania Travel" | "Auto Infotainment Technologies" | "Auto Navigation Systems" | "Auto Safety Technologies" | "Automotive Industry" | "Aviation Industry" | "Bath and Shower" | "Beach Travel" | "Beadwork" | "Bed & Breakfasts" | "Biotech and Biomedical Industry" | "Blood Disorders" | "Board Games and Puzzles" | "Bone and Joint Conditions" | "Brain and Nervous System Disorders" | "Budget Cars" | "Budget Travel" | "Business Accounting & Finance" | "Business Administration" | "Business Banking & Finance" | "Business I.T." | "Business Operations" | "Business Travel" | "Business Utilities" | "Cameras and Camcorders" | "Camping" | "Cancer" | "Candle and Soap Making" | "Canoeing and Kayaking" | "Card Games" | "Casino and Gambling Video Games" | "Casual Games" | "Certified Pre-Owned Cars" | "Civil Engineering Industry" | "Classic Cars" | "Classic Rock" | "Climbing" | "Cold and Flu" | "College Baseball" | "College Basketball" | "College Football" | "College Planning" | "Comic Books" | "Commercial Trucks" | "Commodities" | "Computer Networking" | "Computer Peripherals" | "Computer Software and Applications" | "Concept Cars" | "Construction Industry" | "Consumer Issues" | "Convertible" | "Coupe" | "Credit Cards" | "Crossover" | "Cruises" | "Currencies" | "Data Storage and Warehousing" | "Day Trips" | "Daycare and Pre-School" | "Defense Industry" | "Dental Health" | "Deodorant and Antiperspirant" | "Desktops" | "Diabetes" | "Digestive Disorders" | "Drawing and Sketching" | "Driverless Cars" | "Ear, Nose and Throat Conditions" | "Education industry" | "Educational Video Games" | "Endocrine and Metabolic Diseases" | "Entertainment Industry" | "Environmental Services Industry" | "Europe Travel" | "Executive Leadership & Management" | "Exercise and Fitness Video Games" | "Eye and Vision Conditions" | "Family Travel" | "Family Video Games" | "Financial Crisis" | "Financial Industry" | "Financial Reform" | "Financial Regulation" | "Food Industry" | "Foot Health" | "Freelance Writing" | "Gas and Electric" | "Gasoline Prices" | "Government Business" | "Government Support and Welfare" | "Green Solutions" | "Green Vehicles" | "Hair Care" | "Hard Rock" | "Hatchback" | "Health Insurance" | "Healthcare Industry" | "Heart and Cardiovascular Diseases" | "Hedge Funds" | "Home Entertainment Systems" | "Home Financing" | "Home Insurance" | "Honeymoons and Getaways" | "Horror Video Games" | "Horse Racing" | "Hospitality Industry" | "Hotels and Motels" | "Housing Market" | "Human Resources" | "Infectious Diseases" | "Information Services Industry" | "Information and Network Security" | "Injuries" | "Interest Rates" | "Internet" | "Internet Safety" | "Internet Service Providers" | "Jewelry Making" | "Job Fairs" | "Job Market" | "Laptops" | "Large Business" | "Legal Services Industry" | "Life Insurance" | "Logistics" | "Logistics and Transportation Industry" | "Lung and Respiratory Health" | "Luxury Cars" | "MMOs" | "Makeup and Accessories" | "Management Consulting Industry" | "Manufacturing Industry" | "Marketing and Advertising" | "Mechanical and Industrial Engineering Industry" | "Media Industry" | "Men's Accessories" | "Men's Clothing" | "Men's Shoes and Footwear" | "Mental Health" | "Metals Industry" | "Microcar" | "Minivan" | "Motor Insurance" | "Motorcycle Sports" | "Music and Party Video Games" | "Musicals" | "Mutual Funds" | "Nail Care" | "Natural and Organic Beauty" | "Needlework" | "Non-Profit Organizations" | "North America Travel" | "Off-Road Vehicles" | "Oral care" | "Outdoor Attractions" | "Paintball" | "Painting" | "Parenting Babies and Toddlers" | "Parenting Children Aged 4-11" | "Parenting Teens" | "Parks" | "Participant Sports" | "Performance Cars" | "Perfume and Fragrance" | "Personal Loans" | "Pet Insurance" | "Pharmaceutical Industry" | "Phone Services" | "Photography" | "Physical Therapy" | "Pickup Trucks" | "Polar Travel" | "Political Issues & Policy" | "Postgraduate Education" | "Power and Energy Industry" | "Programming Languages" | "Public Radio" | "Publishing Industry" | "Puzzle Video Games" | "Racing Video Games" | "Rail Travel" | "Real Estate Industry" | "Reproductive Health" | "Resume Writing and Advice" | "Retail Industry" | "Road Trips" | "Role-Playing Video Games" | "Roleplaying Games" | "Rugby League" | "Rugby Union" | "Running and Jogging" | "SUV" | "Sales" | "Scrapbooking" | "Screenwriting" | "Scuba Diving" | "Sedan" | "Sexual Health" | "Shaving" | "Simulation Video Games" | "Skateboarding" | "Skin Care" | "Skin and Dermatology" | "Sleep Disorders" | "Small and Medium-sized Business" | "Smartphones" | "Smoking Cessation" | "Snowboarding" | "Soft AC Music" | "Soft Rock" | "South America Travel" | "Spas" | "Special Needs Kids" | "Sports Video Games" | "Stamps and Coins" | "Standardized Testing" | "Startups" | "Station Wagon" | "Stocks and Bonds" | "Strategy Video Games" | "Student Financial Aid" | "Student Loans" | "Substance Abuse" | "Summer Olympic Sports" | "Surfing and Bodyboarding" | "Tablets and E-readers" | "Technology Industry" | "Telecommunications Industry" | "Travel Insurance" | "Undergraduate Education" | "Urban AC Music" | "Van" | "Video Production" | "Water Services" | "Waterskiing and Wakeboarding" | "Wearable Technology" | "Winter Olympic Sports" | "Women's Accessories" | "Women's Clothing" | "Women's Shoes and Footwear" | "Woodworking"; iabTier4?: "Real Estate" | "Insurance" | "Entertainment" | "Consumer Electronics" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" | "Action/Adventure" | "Adult & Explicit Sexual Content" | "Adult Album Alternative" | "Adult Contemporary Music" | "Adult Education" | "Agnosticism" | "Alcoholic Beverages" | "Alternative Music" | "American Football" | "Amusement and Theme Parks" | "Animation & Anime" | "Anniversary" | "Antiquing and Antiques" | "Apartments" | "Apprenticeships" | "Arms & Ammunition" | "Art and Photography" | "Artificial Intelligence" | "Arts and Crafts" | "Astrology" | "Atheism" | "Augmented Reality" | "Australian Rules Football" | "Auto Body Styles" | "Auto Buying and Selling" | "Auto Insurance" | "Auto Parts" | "Auto Racing" | "Auto Recalls" | "Auto Rentals" | "Auto Repair" | "Auto Safety" | "Auto Shows" | "Auto Technology" | "Auto Type" | "Awards Shows" | "Baby Shower" | "Bachelor Party" | "Bachelorette Party" | "Badminton" | "Barbecues and Grilling" | "Bars & Restaurants" | "Baseball" | "Basketball" | "Beach Volleyball" | "Beauty" | "Beekeeping" | "Bereavement" | "Biographies" | "Biological Sciences" | "Birds" | "Birdwatching" | "Birth" | "Birthday" | "Blues" | "Body Art" | "Bodybuilding" | "Bowling" | "Boxing" | "Buddhism" | "Business" | "Business Expos & Conferences" | "Car Culture" | "Career Advice" | "Career Planning" | "Casinos & Gambling" | "Cats" | "Celebrity Deaths" | "Celebrity Families" | "Celebrity Homes" | "Celebrity Pregnancy" | "Celebrity Relationships" | "Celebrity Scandal" | "Celebrity Style" | "Cheerleading" | "Chemistry" | "Children's Clothing" | "Children's Games and Toys" | "Children's Health" | "Children's Music" | "Christianity" | "Cigars" | "Civic affairs" | "Classic Hits" | "Classical Music" | "Collecting" | "College Education" | "College Radio" | "College Sports" | "Comedy" | "Comedy (Music and Audio)" | "Comics and Graphic Novels" | "Computing" | "Console Games" | "Consumer Banking" | "Contemporary Hits/Pop/Top 40" | "Content Production" | "Cooking" | "Cosmetic Medical Services" | "Costume" | "Country Music" | "Coupons and Discounts" | "Cricket" | "Crime & Harmful Acts to Individuals, Society & Human Right Violations" | "Cycling" | "Dance" | "Dance and Electronic Music" | "Darts" | "Dash Cam Videos" | "Dating" | "Death, Injury, or Military Conflict" | "Debated Sensitive Social Issues" | "Design" | "Designer Clothing" | "Desserts and Baking" | "Developmental Sites" | "Digital Arts" | "Dining Out" | "Disabled Sports" | "Diseases and Conditions" | "Diving" | "Divorce" | "Documentary" | "Dogs" | "Drama" | "Early Childhood Education" | "Economy" | "Educational Assessment" | "Eldercare" | "Elections" | "Environment" | "Equine Sports" | "Extreme Sports" | "Factual" | "Family/Children" | "Fan Conventions" | "Fantasy" | "Fantasy Sports" | "Fashion Trends" | "Fiction" | "Field Hockey" | "Figure Skating" | "Financial Assistance" | "Financial Planning" | "Fine Art Photography" | "Fish and Aquariums" | "Fishing Sports" | "Fitness and Exercise" | "Flower Shopping" | "Food Allergies" | "Food Movements" | "Frugal Living" | "Funeral" | "Games and Puzzles" | "Gardening" | "Genealogy and Ancestry" | "Genetics" | "Geography" | "Geology" | "Gifts and Greetings Cards" | "Golf" | "Gospel Music" | "Graduation" | "Grocery Shopping" | "Gymnastics" | "Hate Speech and Acts of Aggression" | "Healthy Cooking and Eating" | "High Fashion" | "Hinduism" | "Hip Hop Music" | "Historic Site and Landmark Tours" | "History" | "Holiday" | "Holiday Shopping" | "Home Appliances" | "Home Entertaining" | "Home Improvement" | "Home Security" | "Home Utilities" | "Homeschooling" | "Homework and Study" | "Horror" | "Hotel Properties" | "Household Supplies" | "Houses" | "Humor and Satire" | "Hunting and Shooting" | "Ice Hockey" | "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" | "Indoor Environmental Quality" | "Industrial Property" | "Industries" | "Inline Skating" | "Inspirational/New Age Music" | "Interior Decorating" | "Islam" | "Jazz" | "Job Search" | "Judaism" | "Lacrosse" | "Land and Farms" | "Landscaping" | "Language Learning" | "Large Animals" | "Lifestyle" | "Lotteries and Scratchcards" | "Magic and Illusion" | "Malls & Shopping Centers" | "Marriage and Civil Unions" | "Martial Arts" | "Medical Tests" | "Men's Fashion" | "Men's Health" | "Mobile Games" | "Model Toys" | "Modern Art" | "Motorcycles" | "Movies" | "Museums & Galleries" | "Music" | "Music Video" | "Musical Instruments" | "Mystery" | "National & Civic Holidays" | "Nature" | "Nightclubs" | "Non-Alcoholic Beverages" | "Nutrition" | "Obscenity and Profanity" | "Office Property" | "Oldies/Adult Standards" | "Olympic Sports" | "Online Education" | "Online Piracy" | "Opera" | "Outdoor Decorating" | "PC Games" | "Paranormal Phenomena" | "Parenting" | "Party Supplies and Decorations" | "Personal Care" | "Personal Debt" | "Personal Investing" | "Personal Taxes" | "Pet Adoptions" | "Pet Supplies" | "Pharmaceutical Drugs" | "Physics" | "Poetry" | "Poker and Professional Gambling" | "Primary Education" | "Private School" | "Prom" | "R&B/Soul/Funk" | "Radio Control" | "Real Estate Buying and Selling" | "Real Estate Renting and Leasing" | "Reality TV" | "Reggae" | "Religious (Music and Audio)" | "Remodeling & Construction" | "Remote Working" | "Reptiles" | "Retail Property" | "Retirement Planning" | "Road-Side Assistance" | "Robotics" | "Rock Music" | "Rodeo" | "Romance" | "Rowing" | "Rugby" | "Sailing" | "Sales and Promotions" | "Sci-fi and Fantasy" | "Science Fiction" | "Scooters" | "Secondary Education" | "Senior Health" | "Sikhism" | "Single Life" | "Skiing" | "Smart Home" | "Snooker/Pool/Billiards" | "Soap Opera" | "Soccer" | "Softball" | "Songwriters/Folk" | "Soundtracks, TV and Showtunes" | "Space and Astronomy" | "Spam or Harmful Content" | "Special Education" | "Special Interest (Indie/Art House)" | "Spirituality" | "Sports Equipment" | "Sports Radio" | "Squash" | "Street Style" | "Surgery" | "Swimming" | "Table Tennis" | "Talk Radio" | "Talk Show" | "Television" | "Tennis" | "Terrorism" | "Theater" | "Theater Venues" | "Thriller" | "Track and Field" | "Travel Accessories" | "Travel Locations" | "Travel Preparation and Advice" | "Travel Type" | "True Crime" | "Urban Contemporary Music" | "Vacation Properties" | "Vaccines" | "Variety (Music and Audio)" | "Vegan Diets" | "Vegetarian Diets" | "Veterinary Medicine" | "Video Game Genres" | "Virtual Reality" | "Vocational Training" | "Volleyball" | "Walking" | "Water Polo" | "Weather" | "Wedding" | "Weight Loss" | "Weightlifting" | "Wellness" | "Western" | "Women's Fashion" | "Women's Health" | "Workshops and Classes" | "World Cuisines" | "World/International Music" | "Wrestling" | "Young Adult" | "Zoos & Aquariums" | "eSports" | "Action Video Games" | "Action-Adventure Video Games" | "Adoption and Fostering" | "Adult Video Games" | "Adventure Travel" | "Adventure Video Games" | "Advertising Industry" | "Africa Travel" | "Agriculture" | "Air Travel" | "Album-oriented Rock" | "Allergies" | "Alternative Medicine" | "Alternative Rock" | "Apparel Industry" | "Asia Travel" | "Audio Production" | "Australia and Oceania Travel" | "Auto Infotainment Technologies" | "Auto Navigation Systems" | "Auto Safety Technologies" | "Automotive Industry" | "Aviation Industry" | "Bath and Shower" | "Beach Travel" | "Beadwork" | "Bed & Breakfasts" | "Biotech and Biomedical Industry" | "Blood Disorders" | "Board Games and Puzzles" | "Bone and Joint Conditions" | "Brain and Nervous System Disorders" | "Budget Cars" | "Budget Travel" | "Business Accounting & Finance" | "Business Administration" | "Business Banking & Finance" | "Business I.T." | "Business Operations" | "Business Travel" | "Business Utilities" | "Cameras and Camcorders" | "Camping" | "Cancer" | "Candle and Soap Making" | "Canoeing and Kayaking" | "Card Games" | "Casino and Gambling Video Games" | "Casual Games" | "Certified Pre-Owned Cars" | "Civil Engineering Industry" | "Classic Cars" | "Classic Rock" | "Climbing" | "Cold and Flu" | "College Baseball" | "College Basketball" | "College Football" | "College Planning" | "Comic Books" | "Commercial Trucks" | "Commodities" | "Computer Networking" | "Computer Peripherals" | "Concept Cars" | "Construction Industry" | "Consumer Issues" | "Convertible" | "Coupe" | "Credit Cards" | "Crossover" | "Cruises" | "Currencies" | "Data Storage and Warehousing" | "Day Trips" | "Daycare and Pre-School" | "Defense Industry" | "Dental Health" | "Deodorant and Antiperspirant" | "Desktops" | "Diabetes" | "Digestive Disorders" | "Drawing and Sketching" | "Driverless Cars" | "Ear, Nose and Throat Conditions" | "Education industry" | "Educational Video Games" | "Endocrine and Metabolic Diseases" | "Entertainment Industry" | "Environmental Services Industry" | "Europe Travel" | "Executive Leadership & Management" | "Exercise and Fitness Video Games" | "Eye and Vision Conditions" | "Family Travel" | "Family Video Games" | "Financial Crisis" | "Financial Industry" | "Financial Reform" | "Financial Regulation" | "Food Industry" | "Foot Health" | "Freelance Writing" | "Gas and Electric" | "Gasoline Prices" | "Government Business" | "Government Support and Welfare" | "Green Solutions" | "Green Vehicles" | "Hair Care" | "Hard Rock" | "Hatchback" | "Health Insurance" | "Healthcare Industry" | "Heart and Cardiovascular Diseases" | "Hedge Funds" | "Home Entertainment Systems" | "Home Financing" | "Home Insurance" | "Honeymoons and Getaways" | "Horror Video Games" | "Horse Racing" | "Hospitality Industry" | "Hotels and Motels" | "Housing Market" | "Human Resources" | "Infectious Diseases" | "Information Services Industry" | "Information and Network Security" | "Injuries" | "Interest Rates" | "Internet" | "Internet Safety" | "Internet Service Providers" | "Jewelry Making" | "Job Fairs" | "Job Market" | "Laptops" | "Large Business" | "Legal Services Industry" | "Life Insurance" | "Logistics" | "Logistics and Transportation Industry" | "Lung and Respiratory Health" | "Luxury Cars" | "MMOs" | "Makeup and Accessories" | "Management Consulting Industry" | "Manufacturing Industry" | "Marketing and Advertising" | "Mechanical and Industrial Engineering Industry" | "Media Industry" | "Men's Accessories" | "Men's Clothing" | "Men's Shoes and Footwear" | "Mental Health" | "Metals Industry" | "Microcar" | "Minivan" | "Motor Insurance" | "Motorcycle Sports" | "Music and Party Video Games" | "Musicals" | "Mutual Funds" | "Nail Care" | "Natural and Organic Beauty" | "Needlework" | "Non-Profit Organizations" | "North America Travel" | "Off-Road Vehicles" | "Oral care" | "Outdoor Attractions" | "Paintball" | "Painting" | "Parenting Babies and Toddlers" | "Parenting Children Aged 4-11" | "Parenting Teens" | "Parks" | "Participant Sports" | "Performance Cars" | "Perfume and Fragrance" | "Personal Loans" | "Pet Insurance" | "Pharmaceutical Industry" | "Phone Services" | "Photography" | "Physical Therapy" | "Pickup Trucks" | "Polar Travel" | "Political Issues & Policy" | "Postgraduate Education" | "Power and Energy Industry" | "Programming Languages" | "Public Radio" | "Publishing Industry" | "Puzzle Video Games" | "Racing Video Games" | "Rail Travel" | "Real Estate Industry" | "Reproductive Health" | "Resume Writing and Advice" | "Retail Industry" | "Road Trips" | "Role-Playing Video Games" | "Roleplaying Games" | "Rugby League" | "Rugby Union" | "Running and Jogging" | "SUV" | "Sales" | "Scrapbooking" | "Screenwriting" | "Scuba Diving" | "Sedan" | "Sexual Health" | "Shaving" | "Simulation Video Games" | "Skateboarding" | "Skin Care" | "Skin and Dermatology" | "Sleep Disorders" | "Small and Medium-sized Business" | "Smartphones" | "Smoking Cessation" | "Snowboarding" | "Soft AC Music" | "Soft Rock" | "South America Travel" | "Spas" | "Special Needs Kids" | "Sports Video Games" | "Stamps and Coins" | "Standardized Testing" | "Startups" | "Station Wagon" | "Stocks and Bonds" | "Strategy Video Games" | "Student Financial Aid" | "Student Loans" | "Substance Abuse" | "Summer Olympic Sports" | "Surfing and Bodyboarding" | "Tablets and E-readers" | "Technology Industry" | "Telecommunications Industry" | "Travel Insurance" | "Undergraduate Education" | "Urban AC Music" | "Van" | "Video Production" | "Water Services" | "Waterskiing and Wakeboarding" | "Wearable Technology" | "Winter Olympic Sports" | "Women's Accessories" | "Women's Clothing" | "Women's Shoes and Footwear" | "Woodworking" | "3-D Graphics" | "Angel Investment" | "Antivirus Software" | "Bankruptcy" | "Birth Control" | "Browsers" | "Business Loans" | "Cloud Computing" | "Computer Animation" | "Databases" | "Debt Factoring & Invoice Discounting" | "Desktop Publishing" | "Digital Audio" | "Email" | "First Aid" | "Graphics Software" | "Herbs and Supplements" | "Holistic Health" | "Hormonal Disorders" | "IT and Internet Support" | "Infertility" | "Internet for Beginners" | "Internet of Things" | "Men's Business Wear" | "Men's Casual Wear" | "Men's Formal Wear" | "Men's Jewelry and Watches" | "Men's Outerwear" | "Men's Sportswear" | "Men's Underwear and Sleepwear" | "Menopause" | "Mergers and Acquisitions" | "Operating Systems" | "Options" | "Photo Editing Software" | "Pregnancy" | "Private Equity" | "Professional School" | "Recalls" | "Sale & Lease Back" | "Search" | "Sexual Conditions" | "Shareware and Freeware" | "Social Networking" | "Software and Applications" | "Thyroid Disorders" | "Venture Capital" | "Video Software" | "Web Conferencing" | "Web Design and HTML" | "Web Development" | "Web Hosting" | "Women's Business Wear" | "Women's Casual Wear" | "Women's Formal Wear" | "Women's Glasses" | "Women's Handbags and Wallets" | "Women's Hats and Scarves" | "Women's Intimates and Sleepwear" | "Women's Jewelry and Watches" | "Women's Outerwear" | "Women's Sportswear"; companies?: string[]; publishStart?: Date; publishEnd?: Date; visitedStart?: Date; visitedEnd?: Date; certain?: boolean; includeNetlocs?: string[]; excludeNetlocs?: string[]; includeCompanies?: string[]; excludeCompanies?: string[]; includeDocs?: string[]; excludeDocs?: string[]; } = ...
Default search parameters to apply to all searches
searchDefaults.autoGenerateExpansions?
boolean = ...
searchDefaults.expansions?
string[] = ...
searchDefaults.sqlFilter?
string = ...
searchDefaults.algorithm?
"string" | "baseline" | "lexical" | "hamming" | "hybrid-1" | "hybrid-2" | "hybrid-3" | "company" = ...
searchDefaults.nResults?
number = ...
searchDefaults.nProbes?
number = ...
searchDefaults.nContextify?
number = ...
searchDefaults.minSimilarity?
number = ...
searchDefaults.mustInclude?
string[] = ...
searchDefaults.mustExclude?
string[] = ...
searchDefaults.brandSafety?
"Safe" | "Sensitive" | "Unsafe" = ...
searchDefaults.language?
"af" | "am" | "ar" | "as" | "az" | "be" | "bg" | "bn" | "br" | "bs" | "ca" | "cs" | "cy" | "da" | "de" | "el" | "en" | "eo" | "es" | "et" | "eu" | "fa" | "fi" | "fr" | "fy" | "ga" | "gd" | "gl" | "gu" | "ha" | "he" | "hi" | "hr" | "hu" | "hy" | "id" | "is" | "it" | "ja" | "jv" | "ka" | "kk" | "km" | "kn" | "ko" | "ku" | "ky" | "la" | "lo" | "lt" | "lv" | "mg" | "mk" | "ml" | "mn" | "mr" | "ms" | "my" | "ne" | "nl" | "no" | "om" | "or" | "pa" | "pl" | "ps" | "pt" | "ro" | "ru" | "sa" | "sd" | "sh" | "si" | "sk" | "sl" | "so" | "sq" | "sr" | "su" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "ug" | "uk" | "ur" | "uz" | "vi" | "xh" | "yi" | "zh" = ...
searchDefaults.continent?
"Africa" | "Asia" | "Europe" | "North America" | "Oceania" | "South America" | "Worldwide" = ...
searchDefaults.region?
"North America" | "Oceania" | "South America" | "Worldwide" | "Caribbean" | "Central Africa" | "Central America" | "Central Asia" | "Central Europe" | "East Africa" | "East Asia" | "Eastern Europe" | "Middle East" | "North Africa" | "Northern Europe" | "South Asia" | "Southeast Asia" | "Southern Africa" | "Southern Europe" | "Sub-Saharan Africa" | "The Amazon Basin" | "The Andes" | "The Arctic Region" | "The Balkans" | "The Caucasus" | "The Horn of Africa" | "The Levant" | "The Middle East" | "The Sahel" | "West Africa" | "Western Europe" = ...
searchDefaults.country?
"Worldwide" | "Afghanistan" | "Albania" | "Algeria" | "Andorra" | "Angola" | "Antigua and Barbuda" | "Argentina" | "Armenia" | "Australia" | "Austria" | "Azerbaijan" | "Bahamas" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bhutan" | "Bolivia" | "Bosnia and Herzegovina" | "Botswana" | "Brazil" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cabo Verde" | "Cambodia" | "Cameroon" | "Canada" | "Central African Republic" | "Chad" | "Chile" | "China" | "Colombia" | "Comoros" | "Congo (Congo-Brazzaville)" | "Costa Rica" | "Croatia" | "Cuba" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Eswatini" | "Ethiopia" | "Fiji" | "Finland" | "France" | "Gabon" | "Gambia" | "Georgia" | "Germany" | "Ghana" | "Greece" | "Grenada" | "Guatemala" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Honduras" | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Marshall Islands" | "Mauritania" | "Mauritius" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "North Korea" | "North Macedonia" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Panama" | "Papua New Guinea" | "Paraguay" | "Peru" | "Philippines" | "Poland" | "Portugal" | "Qatar" | "Romania" | "Russia" | "Rwanda" | "Saint Kitts and Nevis" | "Saint Lucia" | "Saint Vincent and the Grenadines" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "Timor-Leste" | "Togo" | "Tonga" | "Trinidad and Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City" | "Venezuela" | "Vietnam" | "Yemen" | "Zambia" | "Zimbabwe" = ...
searchDefaults.sector?
"Other" | "Communication Services" | "Consumer Discretionary" | "Consumer Staples" | "Energy" | "Financials" | "Health Care" | "Industrials" | "Information Technology" | "Materials" | "Real Estate" | "Utilities" = ...
searchDefaults.industryGroup?
"Other" | "Energy" | "Materials" | "Utilities" | "Automobiles & Components" | "Banks" | "Capital Goods" | "Commercial & Professional Services" | "Consumer Discretionary Distribution & Retail" | "Consumer Durables & Apparel" | "Consumer Services" | "Consumer Staples Distribution & Retail" | "Equity Real Estate Investment Trusts (REITs)" | "Financial Services" | "Food, Beverage & Tobacco" | "Health Care Equipment & Services" | "Household & Personal Products" | "Insurance" | "Media & Entertainment" | "Pharmaceuticals, Biotechnology & Life Sciences" | "Real Estate Management & Development" | "Semiconductors & Semiconductor Equipment" | "Software & Services" | "Technology Hardware & Equipment" | "Telecommunication Services" | "Transportation" = ...
searchDefaults.industry?
"Other" | "Banks" | "Consumer Staples Distribution & Retail" | "Financial Services" | "Insurance" | "Real Estate Management & Development" | "Semiconductors & Semiconductor Equipment" | "Aerospace & Defense" | "Air Freight & Logistics" | "Automobile Components" | "Automobiles" | "Beverages" | "Biotechnology" | "Broadline Retail" | "Building Products" | "Capital Markets" | "Chemicals" | "Commercial Services & Supplies" | "Communications Equipment" | "Construction & Engineering" | "Construction Materials" | "Consumer Finance" | "Containers & Packaging" | "Distributors" | "Diversified Consumer Services" | "Diversified REITs" | "Diversified Telecommunication Services" | "Electric Utilities" | "Electrical Equipment" | "Electronic Equipment, Instruments & Components" | "Energy Equipment & Services" | "Entertainment" | "Food Products" | "Gas Utilities" | "Ground Transportation" | "Health Care Equipment & Supplies" | "Health Care Providers & Services" | "Health Care REITs" | "Health Care Technology" | "Hotel & Resort REITs" | "Hotels, Restaurants & Leisure" | "Household Durables" | "Household Products" | "IT Services" | "Independent Power and Renewable Electricity Producers" | "Industrial Conglomerates" | "Industrial REITs" | "Interactive Media & Services" | "Leisure Products" | "Life Sciences Tools & Services" | "Machinery" | "Marine Transportation" | "Media" | "Metals & Mining" | "Mortgage Real Estate Investment Trusts (REITs)" | "Multi-Utilities" | "Office REITs" | "Oil, Gas & Consumable Fuels" | "Paper & Forest Products" | "Passenger Airlines" | "Personal Care Products" | "Pharmaceuticals" | "Professional Services" | "Residential REITs" | "Retail REITs" | "Software" | "Specialized REITs" | "Specialty Retail" | "Technology Hardware, Storage & Peripherals" | "Textiles, Apparel & Luxury Goods" | "Tobacco" | "Trading Companies & Distributors" | "Transportation Infrastructure" | "Water Utilities" | "Wireless Telecommunication Services" = ...
searchDefaults.subIndustry?
"Other" | "Aerospace & Defense" | "Air Freight & Logistics" | "Biotechnology" | "Broadline Retail" | "Building Products" | "Communications Equipment" | "Construction & Engineering" | "Construction Materials" | "Consumer Finance" | "Distributors" | "Electric Utilities" | "Gas Utilities" | "Health Care Technology" | "Household Products" | "Industrial Conglomerates" | "Interactive Media & Services" | "Leisure Products" | "Life Sciences Tools & Services" | "Marine Transportation" | "Multi-Utilities" | "Passenger Airlines" | "Personal Care Products" | "Pharmaceuticals" | "Technology Hardware, Storage & Peripherals" | "Tobacco" | "Trading Companies & Distributors" | "Water Utilities" | "Wireless Telecommunication Services" | "Advertising" | "Agricultural & Farm Machinery" | "Agricultural Products & Services" | "Airport Services" | "Alternative Carriers" | "Aluminum" | "Apparel Retail" | "Apparel, Accessories & Luxury Goods" | "Application Software" | "Asset Management & Custody Banks" | "Automobile Manufacturers" | "Automotive Parts & Equipment" | "Automotive Retail" | "Brewers" | "Broadcasting" | "Cable & Satellite" | "Cargo Ground Transportation" | "Casinos & Gaming" | "Coal & Consumable Fuels" | "Commercial & Residential Mortgage Finance" | "Commercial Printing" | "Commodity Chemicals" | "Computer & Electronics Retail" | "Construction Machinery & Heavy Transportation Equipment" | "Consumer Electronics" | "Consumer Staples Merchandise Retail" | "Copper" | "Data Center REITs*" | "Data Processing & Outsourced Services" | "Distillers & Vintners" | "Diversified Banks" | "Diversified Capital Markets" | "Diversified Chemicals" | "Diversified Financial Services" | "Diversified Metals & Mining" | "Diversified REITs*" | "Diversified Real Estate Activities" | "Diversified Support Services" | "Drug Retail" | "Education Services" | "Electrical Components & Equipment" | "Electronic Components" | "Electronic Equipment & Instruments " | "Electronic Manufacturing Services" | "Environmental & Facilities Services" | "Fertilizers & Agricultural Chemicals" | "Financial Exchanges & Data" | "Food Distributors" | "Food Retail" | "Footwear" | "Forest Products" | "Gold" | "Health Care Distributors" | "Health Care Equipment" | "Health Care Facilities" | "Health Care REITs*" | "Health Care Services" | "Health Care Supplies" | "Heavy Electrical Equipment" | "Highways & Railtracks" | "Home Furnishings" | "Home Improvement Retail" | "Homebuilding" | "Homefurnishing Retail" | "Hotel & Resort REITs*" | "Hotels, Resorts & Cruise Lines" | "Household Appliances" | "Housewares & Specialties" | "Human Resource & Employment Services" | "IT Consulting & Other Services" | "Independent Power Producers & Energy Traders" | "Industrial Gases" | "Industrial Machinery & Supplies & Components" | "Industrial REITs*" | "Insurance Brokers" | "Integrated Oil & Gas" | "Integrated Telecommunication Services" | "Interactive Home Entertainment" | "Internet Services & Infrastructure" | "Investment Banking & Brokerage" | "Leisure Facilities" | "Life & Health Insurance" | "Managed Health Care" | "Marine Ports & Services" | "Metal, Glass & Plastic Containers " | "Mortgage REITs*" | "Motorcycle Manufacturers" | "Movies & Entertainment" | "Multi-Family Residential REITs*" | "Multi-Sector Holdings" | "Multi-line Insurance" | "Office REITs*" | "Office Services & Supplies" | "Oil & Gas Drilling" | "Oil & Gas Equipment & Services" | "Oil & Gas Exploration & Production" | "Oil & Gas Refining & Marketing" | "Oil & Gas Storage & Transportation" | "Other Specialized REITs*" | "Other Specialty Retail" | "Packaged Foods & Meats" | "Paper & Plastic Packaging Products & Materials" | "Paper Products" | "Passenger Ground Transportation" | "Precious Metals & Minerals" | "Property & Casualty Insurance" | "Publishing" | "Rail Transportation" | "Real Estate Development" | "Real Estate Operating Companies" | "Real Estate Services" | "Regional Banks" | "Reinsurance" | "Renewable Electricity" | "Research & Consulting Services" | "Restaurants" | "Retail REITs*" | "Security & Alarm Services" | "Self-Storage REITs*" | "Semiconductor Materials & Equipment" | "Semiconductors" | "Silver" | "Single-Family Residential REITs*" | "Soft Drinks & Non-alcoholic Beverages" | "Specialized Consumer Services" | "Specialized Finance" | "Specialty Chemicals" | "Steel" | "Systems Software" | "Technology Distributors" | "Telecom Tower REITs*" | "Textiles" | "Timber REITs*" | "Tires & Rubber" | "Transaction & Payment Processing Services" = ...
searchDefaults.iabTier1?
"Real Estate" | "Entertainment" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" = ...
searchDefaults.iabTier2?
"Real Estate" | "Insurance" | "Entertainment" | "Consumer Electronics" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" | "Action/Adventure" | "Adult & Explicit Sexual Content" | "Adult Album Alternative" | "Adult Contemporary Music" | "Adult Education" | "Agnosticism" | "Alcoholic Beverages" | "Alternative Music" | "American Football" | "Amusement and Theme Parks" | "Animation & Anime" | "Anniversary" | "Antiquing and Antiques" | "Apartments" | "Apprenticeships" | "Arms & Ammunition" | "Art and Photography" | "Artificial Intelligence" | "Arts and Crafts" | "Astrology" | "Atheism" | "Augmented Reality" | "Australian Rules Football" | "Auto Body Styles" | "Auto Buying and Selling" | "Auto Insurance" | "Auto Parts" | "Auto Racing" | "Auto Recalls" | "Auto Rentals" | "Auto Repair" | "Auto Safety" | "Auto Shows" | "Auto Technology" | "Auto Type" | "Awards Shows" | "Baby Shower" | "Bachelor Party" | "Bachelorette Party" | "Badminton" | "Barbecues and Grilling" | "Bars & Restaurants" | "Baseball" | "Basketball" | "Beach Volleyball" | "Beauty" | "Beekeeping" | "Bereavement" | "Biographies" | "Biological Sciences" | "Birds" | "Birdwatching" | "Birth" | "Birthday" | "Blues" | "Body Art" | "Bodybuilding" | "Bowling" | "Boxing" | "Buddhism" | "Business" | "Business Expos & Conferences" | "Car Culture" | "Career Advice" | "Career Planning" | "Casinos & Gambling" | "Cats" | "Celebrity Deaths" | "Celebrity Families" | "Celebrity Homes" | "Celebrity Pregnancy" | "Celebrity Relationships" | "Celebrity Scandal" | "Celebrity Style" | "Cheerleading" | "Chemistry" | "Children's Clothing" | "Children's Games and Toys" | "Children's Health" | "Children's Music" | "Christianity" | "Cigars" | "Civic affairs" | "Classic Hits" | "Classical Music" | "Collecting" | "College Education" | "College Radio" | "College Sports" | "Comedy" | "Comedy (Music and Audio)" | "Comics and Graphic Novels" | "Computing" | "Console Games" | "Consumer Banking" | "Contemporary Hits/Pop/Top 40" | "Content Production" | "Cooking" | "Cosmetic Medical Services" | "Costume" | "Country Music" | "Coupons and Discounts" | "Cricket" | "Crime & Harmful Acts to Individuals, Society & Human Right Violations" | "Cycling" | "Dance" | "Dance and Electronic Music" | "Darts" | "Dash Cam Videos" | "Dating" | "Death, Injury, or Military Conflict" | "Debated Sensitive Social Issues" | "Design" | "Designer Clothing" | "Desserts and Baking" | "Developmental Sites" | "Digital Arts" | "Dining Out" | "Disabled Sports" | "Diseases and Conditions" | "Diving" | "Divorce" | "Documentary" | "Dogs" | "Drama" | "Early Childhood Education" | "Economy" | "Educational Assessment" | "Eldercare" | "Elections" | "Environment" | "Equine Sports" | "Extreme Sports" | "Factual" | "Family/Children" | "Fan Conventions" | "Fantasy" | "Fantasy Sports" | "Fashion Trends" | "Fiction" | "Field Hockey" | "Figure Skating" | "Financial Assistance" | "Financial Planning" | "Fine Art Photography" | "Fish and Aquariums" | "Fishing Sports" | "Fitness and Exercise" | "Flower Shopping" | "Food Allergies" | "Food Movements" | "Frugal Living" | "Funeral" | "Games and Puzzles" | "Gardening" | "Genealogy and Ancestry" | "Genetics" | "Geography" | "Geology" | "Gifts and Greetings Cards" | "Golf" | "Gospel Music" | "Graduation" | "Grocery Shopping" | "Gymnastics" | "Hate Speech and Acts of Aggression" | "Healthy Cooking and Eating" | "High Fashion" | "Hinduism" | "Hip Hop Music" | "Historic Site and Landmark Tours" | "History" | "Holiday" | "Holiday Shopping" | "Home Appliances" | "Home Entertaining" | "Home Improvement" | "Home Security" | "Home Utilities" | "Homeschooling" | "Homework and Study" | "Horror" | "Hotel Properties" | "Household Supplies" | "Houses" | "Humor and Satire" | "Hunting and Shooting" | "Ice Hockey" | "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" | "Indoor Environmental Quality" | "Industrial Property" | "Industries" | "Inline Skating" | "Inspirational/New Age Music" | "Interior Decorating" | "Islam" | "Jazz" | "Job Search" | "Judaism" | "Lacrosse" | "Land and Farms" | "Landscaping" | "Language Learning" | "Large Animals" | "Lifestyle" | "Lotteries and Scratchcards" | "Magic and Illusion" | "Malls & Shopping Centers" | "Marriage and Civil Unions" | "Martial Arts" | "Medical Tests" | "Men's Fashion" | "Men's Health" | "Mobile Games" | "Model Toys" | "Modern Art" | "Motorcycles" | "Movies" | "Museums & Galleries" | "Music" | "Music Video" | "Musical" | "Musical Instruments" | "Mystery" | "National & Civic Holidays" | "Nature" | "Nightclubs" | "Non-Alcoholic Beverages" | "Nutrition" | "Obscenity and Profanity" | "Office Property" | "Oldies/Adult Standards" | "Olympic Sports" | "Online Education" | "Online Piracy" | "Opera" | "Outdoor Activities" | "Outdoor Decorating" | "PC Games" | "Paranormal Phenomena" | "Parenting" | "Parks & Nature" | "Party Supplies and Decorations" | "Personal Care" | "Personal Debt" | "Personal Investing" | "Personal Taxes" | "Pet Adoptions" | "Pet Supplies" | "Pharmaceutical Drugs" | "Physics" | "Poetry" | "Poker and Professional Gambling" | "Political Issues & policy" | "Primary Education" | "Private School" | "Prom" | "R&B/Soul/Funk" | "Radio Control" | "Real Estate Buying and Selling" | "Real Estate Renting and Leasing" | "Reality TV" | "Reggae" | "Religious (Music and Audio)" | "Remodeling & Construction" | "Remote Working" | "Reptiles" | "Retail Property" | "Retirement Planning" | "Road-Side Assistance" | "Robotics" | "Rock Music" | "Rodeo" | "Romance" | "Rowing" | "Rugby" | "Sailing" | "Sales and Promotions" | "Sci-fi and Fantasy" | "Science Fiction" | "Scooters" | "Secondary Education" | "Senior Health" | "Sikhism" | "Single Life" | "Skiing" | "Smart Home" | "Snooker/Pool/Billiards" | "Soap Opera" | "Soccer" | "Softball" | "Songwriters/Folk" | "Soundtracks, TV and Showtunes" | "Space and Astronomy" | "Spam or Harmful Content" | "Special Education" | "Special Interest (Indie/Art House)" | "Spirituality" | "Sports Equipment" | "Sports Radio" | "Squash" | "Street Style" | "Surgery" | "Swimming" | "Table Tennis" | "Talk Radio" | "Talk Show" | "Television" | "Tennis" | "Terrorism" | "Theater" | "Theater Venues" | "Thriller" | "Track and Field" | "Travel Accessories" | "Travel Locations" | "Travel Preparation and Advice" | "Travel Type" | "True Crime" | "Urban Contemporary Music" | "Vacation Properties" | "Vaccines" | "Variety (Music and Audio)" | "Vegan Diets" | "Vegetarian Diets" | "Veterinary Medicine" | "Video Game Genres" | "Virtual Reality" | "Vocational Training" | "Volleyball" | "Walking" | "Water Polo" | "Weather" | "Wedding" | "Weight Loss" | "Weightlifting" | "Wellness" | "Western" | "Women's Fashion" | "Women's Health" | "Workshops and Classes" | "World Cuisines" | "World/International Music" | "Wrestling" | "Young Adult" | "Zoos & Aquariums" | "eSports" = ...
searchDefaults.iabTier3?
"Real Estate" | "Insurance" | "Entertainment" | "Consumer Electronics" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" | "Action/Adventure" | "Adult & Explicit Sexual Content" | "Adult Album Alternative" | "Adult Contemporary Music" | "Adult Education" | "Agnosticism" | "Alcoholic Beverages" | "Alternative Music" | "American Football" | "Amusement and Theme Parks" | "Animation & Anime" | "Anniversary" | "Antiquing and Antiques" | "Apartments" | "Apprenticeships" | "Arms & Ammunition" | "Art and Photography" | "Artificial Intelligence" | "Arts and Crafts" | "Astrology" | "Atheism" | "Augmented Reality" | "Australian Rules Football" | "Auto Body Styles" | "Auto Buying and Selling" | "Auto Insurance" | "Auto Parts" | "Auto Racing" | "Auto Recalls" | "Auto Rentals" | "Auto Repair" | "Auto Safety" | "Auto Shows" | "Auto Technology" | "Auto Type" | "Awards Shows" | "Baby Shower" | "Bachelor Party" | "Bachelorette Party" | "Badminton" | "Barbecues and Grilling" | "Bars & Restaurants" | "Baseball" | "Basketball" | "Beach Volleyball" | "Beauty" | "Beekeeping" | "Bereavement" | "Biographies" | "Biological Sciences" | "Birds" | "Birdwatching" | "Birth" | "Birthday" | "Blues" | "Body Art" | "Bodybuilding" | "Bowling" | "Boxing" | "Buddhism" | "Business" | "Business Expos & Conferences" | "Car Culture" | "Career Advice" | "Career Planning" | "Casinos & Gambling" | "Cats" | "Celebrity Deaths" | "Celebrity Families" | "Celebrity Homes" | "Celebrity Pregnancy" | "Celebrity Relationships" | "Celebrity Scandal" | "Celebrity Style" | "Cheerleading" | "Chemistry" | "Children's Clothing" | "Children's Games and Toys" | "Children's Health" | "Children's Music" | "Christianity" | "Cigars" | "Civic affairs" | "Classic Hits" | "Classical Music" | "Collecting" | "College Education" | "College Radio" | "College Sports" | "Comedy" | "Comedy (Music and Audio)" | "Comics and Graphic Novels" | "Computing" | "Console Games" | "Consumer Banking" | "Contemporary Hits/Pop/Top 40" | "Content Production" | "Cooking" | "Cosmetic Medical Services" | "Costume" | "Country Music" | "Coupons and Discounts" | "Cricket" | "Crime & Harmful Acts to Individuals, Society & Human Right Violations" | "Cycling" | "Dance" | "Dance and Electronic Music" | "Darts" | "Dash Cam Videos" | "Dating" | "Death, Injury, or Military Conflict" | "Debated Sensitive Social Issues" | "Design" | "Designer Clothing" | "Desserts and Baking" | "Developmental Sites" | "Digital Arts" | "Dining Out" | "Disabled Sports" | "Diseases and Conditions" | "Diving" | "Divorce" | "Documentary" | "Dogs" | "Drama" | "Early Childhood Education" | "Economy" | "Educational Assessment" | "Eldercare" | "Elections" | "Environment" | "Equine Sports" | "Extreme Sports" | "Factual" | "Family/Children" | "Fan Conventions" | "Fantasy" | "Fantasy Sports" | "Fashion Trends" | "Fiction" | "Field Hockey" | "Figure Skating" | "Financial Assistance" | "Financial Planning" | "Fine Art Photography" | "Fish and Aquariums" | "Fishing Sports" | "Fitness and Exercise" | "Flower Shopping" | "Food Allergies" | "Food Movements" | "Frugal Living" | "Funeral" | "Games and Puzzles" | "Gardening" | "Genealogy and Ancestry" | "Genetics" | "Geography" | "Geology" | "Gifts and Greetings Cards" | "Golf" | "Gospel Music" | "Graduation" | "Grocery Shopping" | "Gymnastics" | "Hate Speech and Acts of Aggression" | "Healthy Cooking and Eating" | "High Fashion" | "Hinduism" | "Hip Hop Music" | "Historic Site and Landmark Tours" | "History" | "Holiday" | "Holiday Shopping" | "Home Appliances" | "Home Entertaining" | "Home Improvement" | "Home Security" | "Home Utilities" | "Homeschooling" | "Homework and Study" | "Horror" | "Hotel Properties" | "Household Supplies" | "Houses" | "Humor and Satire" | "Hunting and Shooting" | "Ice Hockey" | "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" | "Indoor Environmental Quality" | "Industrial Property" | "Industries" | "Inline Skating" | "Inspirational/New Age Music" | "Interior Decorating" | "Islam" | "Jazz" | "Job Search" | "Judaism" | "Lacrosse" | "Land and Farms" | "Landscaping" | "Language Learning" | "Large Animals" | "Lifestyle" | "Lotteries and Scratchcards" | "Magic and Illusion" | "Malls & Shopping Centers" | "Marriage and Civil Unions" | "Martial Arts" | "Medical Tests" | "Men's Fashion" | "Men's Health" | "Mobile Games" | "Model Toys" | "Modern Art" | "Motorcycles" | "Movies" | "Museums & Galleries" | "Music" | "Music Video" | "Musical Instruments" | "Mystery" | "National & Civic Holidays" | "Nature" | "Nightclubs" | "Non-Alcoholic Beverages" | "Nutrition" | "Obscenity and Profanity" | "Office Property" | "Oldies/Adult Standards" | "Olympic Sports" | "Online Education" | "Online Piracy" | "Opera" | "Outdoor Decorating" | "PC Games" | "Paranormal Phenomena" | "Parenting" | "Party Supplies and Decorations" | "Personal Care" | "Personal Debt" | "Personal Investing" | "Personal Taxes" | "Pet Adoptions" | "Pet Supplies" | "Pharmaceutical Drugs" | "Physics" | "Poetry" | "Poker and Professional Gambling" | "Primary Education" | "Private School" | "Prom" | "R&B/Soul/Funk" | "Radio Control" | "Real Estate Buying and Selling" | "Real Estate Renting and Leasing" | "Reality TV" | "Reggae" | "Religious (Music and Audio)" | "Remodeling & Construction" | "Remote Working" | "Reptiles" | "Retail Property" | "Retirement Planning" | "Road-Side Assistance" | "Robotics" | "Rock Music" | "Rodeo" | "Romance" | "Rowing" | "Rugby" | "Sailing" | "Sales and Promotions" | "Sci-fi and Fantasy" | "Science Fiction" | "Scooters" | "Secondary Education" | "Senior Health" | "Sikhism" | "Single Life" | "Skiing" | "Smart Home" | "Snooker/Pool/Billiards" | "Soap Opera" | "Soccer" | "Softball" | "Songwriters/Folk" | "Soundtracks, TV and Showtunes" | "Space and Astronomy" | "Spam or Harmful Content" | "Special Education" | "Special Interest (Indie/Art House)" | "Spirituality" | "Sports Equipment" | "Sports Radio" | "Squash" | "Street Style" | "Surgery" | "Swimming" | "Table Tennis" | "Talk Radio" | "Talk Show" | "Television" | "Tennis" | "Terrorism" | "Theater" | "Theater Venues" | "Thriller" | "Track and Field" | "Travel Accessories" | "Travel Locations" | "Travel Preparation and Advice" | "Travel Type" | "True Crime" | "Urban Contemporary Music" | "Vacation Properties" | "Vaccines" | "Variety (Music and Audio)" | "Vegan Diets" | "Vegetarian Diets" | "Veterinary Medicine" | "Video Game Genres" | "Virtual Reality" | "Vocational Training" | "Volleyball" | "Walking" | "Water Polo" | "Weather" | "Wedding" | "Weight Loss" | "Weightlifting" | "Wellness" | "Western" | "Women's Fashion" | "Women's Health" | "Workshops and Classes" | "World Cuisines" | "World/International Music" | "Wrestling" | "Young Adult" | "Zoos & Aquariums" | "eSports" | "Action Video Games" | "Action-Adventure Video Games" | "Adoption and Fostering" | "Adult Video Games" | "Adventure Travel" | "Adventure Video Games" | "Advertising Industry" | "Africa Travel" | "Agriculture" | "Air Travel" | "Album-oriented Rock" | "Allergies" | "Alternative Medicine" | "Alternative Rock" | "Apparel Industry" | "Asia Travel" | "Audio Production" | "Australia and Oceania Travel" | "Auto Infotainment Technologies" | "Auto Navigation Systems" | "Auto Safety Technologies" | "Automotive Industry" | "Aviation Industry" | "Bath and Shower" | "Beach Travel" | "Beadwork" | "Bed & Breakfasts" | "Biotech and Biomedical Industry" | "Blood Disorders" | "Board Games and Puzzles" | "Bone and Joint Conditions" | "Brain and Nervous System Disorders" | "Budget Cars" | "Budget Travel" | "Business Accounting & Finance" | "Business Administration" | "Business Banking & Finance" | "Business I.T." | "Business Operations" | "Business Travel" | "Business Utilities" | "Cameras and Camcorders" | "Camping" | "Cancer" | "Candle and Soap Making" | "Canoeing and Kayaking" | "Card Games" | "Casino and Gambling Video Games" | "Casual Games" | "Certified Pre-Owned Cars" | "Civil Engineering Industry" | "Classic Cars" | "Classic Rock" | "Climbing" | "Cold and Flu" | "College Baseball" | "College Basketball" | "College Football" | "College Planning" | "Comic Books" | "Commercial Trucks" | "Commodities" | "Computer Networking" | "Computer Peripherals" | "Computer Software and Applications" | "Concept Cars" | "Construction Industry" | "Consumer Issues" | "Convertible" | "Coupe" | "Credit Cards" | "Crossover" | "Cruises" | "Currencies" | "Data Storage and Warehousing" | "Day Trips" | "Daycare and Pre-School" | "Defense Industry" | "Dental Health" | "Deodorant and Antiperspirant" | "Desktops" | "Diabetes" | "Digestive Disorders" | "Drawing and Sketching" | "Driverless Cars" | "Ear, Nose and Throat Conditions" | "Education industry" | "Educational Video Games" | "Endocrine and Metabolic Diseases" | "Entertainment Industry" | "Environmental Services Industry" | "Europe Travel" | "Executive Leadership & Management" | "Exercise and Fitness Video Games" | "Eye and Vision Conditions" | "Family Travel" | "Family Video Games" | "Financial Crisis" | "Financial Industry" | "Financial Reform" | "Financial Regulation" | "Food Industry" | "Foot Health" | "Freelance Writing" | "Gas and Electric" | "Gasoline Prices" | "Government Business" | "Government Support and Welfare" | "Green Solutions" | "Green Vehicles" | "Hair Care" | "Hard Rock" | "Hatchback" | "Health Insurance" | "Healthcare Industry" | "Heart and Cardiovascular Diseases" | "Hedge Funds" | "Home Entertainment Systems" | "Home Financing" | "Home Insurance" | "Honeymoons and Getaways" | "Horror Video Games" | "Horse Racing" | "Hospitality Industry" | "Hotels and Motels" | "Housing Market" | "Human Resources" | "Infectious Diseases" | "Information Services Industry" | "Information and Network Security" | "Injuries" | "Interest Rates" | "Internet" | "Internet Safety" | "Internet Service Providers" | "Jewelry Making" | "Job Fairs" | "Job Market" | "Laptops" | "Large Business" | "Legal Services Industry" | "Life Insurance" | "Logistics" | "Logistics and Transportation Industry" | "Lung and Respiratory Health" | "Luxury Cars" | "MMOs" | "Makeup and Accessories" | "Management Consulting Industry" | "Manufacturing Industry" | "Marketing and Advertising" | "Mechanical and Industrial Engineering Industry" | "Media Industry" | "Men's Accessories" | "Men's Clothing" | "Men's Shoes and Footwear" | "Mental Health" | "Metals Industry" | "Microcar" | "Minivan" | "Motor Insurance" | "Motorcycle Sports" | "Music and Party Video Games" | "Musicals" | "Mutual Funds" | "Nail Care" | "Natural and Organic Beauty" | "Needlework" | "Non-Profit Organizations" | "North America Travel" | "Off-Road Vehicles" | "Oral care" | "Outdoor Attractions" | "Paintball" | "Painting" | "Parenting Babies and Toddlers" | "Parenting Children Aged 4-11" | "Parenting Teens" | "Parks" | "Participant Sports" | "Performance Cars" | "Perfume and Fragrance" | "Personal Loans" | "Pet Insurance" | "Pharmaceutical Industry" | "Phone Services" | "Photography" | "Physical Therapy" | "Pickup Trucks" | "Polar Travel" | "Political Issues & Policy" | "Postgraduate Education" | "Power and Energy Industry" | "Programming Languages" | "Public Radio" | "Publishing Industry" | "Puzzle Video Games" | "Racing Video Games" | "Rail Travel" | "Real Estate Industry" | "Reproductive Health" | "Resume Writing and Advice" | "Retail Industry" | "Road Trips" | "Role-Playing Video Games" | "Roleplaying Games" | "Rugby League" | "Rugby Union" | "Running and Jogging" | "SUV" | "Sales" | "Scrapbooking" | "Screenwriting" | "Scuba Diving" | "Sedan" | "Sexual Health" | "Shaving" | "Simulation Video Games" | "Skateboarding" | "Skin Care" | "Skin and Dermatology" | "Sleep Disorders" | "Small and Medium-sized Business" | "Smartphones" | "Smoking Cessation" | "Snowboarding" | "Soft AC Music" | "Soft Rock" | "South America Travel" | "Spas" | "Special Needs Kids" | "Sports Video Games" | "Stamps and Coins" | "Standardized Testing" | "Startups" | "Station Wagon" | "Stocks and Bonds" | "Strategy Video Games" | "Student Financial Aid" | "Student Loans" | "Substance Abuse" | "Summer Olympic Sports" | "Surfing and Bodyboarding" | "Tablets and E-readers" | "Technology Industry" | "Telecommunications Industry" | "Travel Insurance" | "Undergraduate Education" | "Urban AC Music" | "Van" | "Video Production" | "Water Services" | "Waterskiing and Wakeboarding" | "Wearable Technology" | "Winter Olympic Sports" | "Women's Accessories" | "Women's Clothing" | "Women's Shoes and Footwear" | "Woodworking" = ...
searchDefaults.iabTier4?
"Real Estate" | "Insurance" | "Entertainment" | "Consumer Electronics" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" | "Action/Adventure" | "Adult & Explicit Sexual Content" | "Adult Album Alternative" | "Adult Contemporary Music" | "Adult Education" | "Agnosticism" | "Alcoholic Beverages" | "Alternative Music" | "American Football" | "Amusement and Theme Parks" | "Animation & Anime" | "Anniversary" | "Antiquing and Antiques" | "Apartments" | "Apprenticeships" | "Arms & Ammunition" | "Art and Photography" | "Artificial Intelligence" | "Arts and Crafts" | "Astrology" | "Atheism" | "Augmented Reality" | "Australian Rules Football" | "Auto Body Styles" | "Auto Buying and Selling" | "Auto Insurance" | "Auto Parts" | "Auto Racing" | "Auto Recalls" | "Auto Rentals" | "Auto Repair" | "Auto Safety" | "Auto Shows" | "Auto Technology" | "Auto Type" | "Awards Shows" | "Baby Shower" | "Bachelor Party" | "Bachelorette Party" | "Badminton" | "Barbecues and Grilling" | "Bars & Restaurants" | "Baseball" | "Basketball" | "Beach Volleyball" | "Beauty" | "Beekeeping" | "Bereavement" | "Biographies" | "Biological Sciences" | "Birds" | "Birdwatching" | "Birth" | "Birthday" | "Blues" | "Body Art" | "Bodybuilding" | "Bowling" | "Boxing" | "Buddhism" | "Business" | "Business Expos & Conferences" | "Car Culture" | "Career Advice" | "Career Planning" | "Casinos & Gambling" | "Cats" | "Celebrity Deaths" | "Celebrity Families" | "Celebrity Homes" | "Celebrity Pregnancy" | "Celebrity Relationships" | "Celebrity Scandal" | "Celebrity Style" | "Cheerleading" | "Chemistry" | "Children's Clothing" | "Children's Games and Toys" | "Children's Health" | "Children's Music" | "Christianity" | "Cigars" | "Civic affairs" | "Classic Hits" | "Classical Music" | "Collecting" | "College Education" | "College Radio" | "College Sports" | "Comedy" | "Comedy (Music and Audio)" | "Comics and Graphic Novels" | "Computing" | "Console Games" | "Consumer Banking" | "Contemporary Hits/Pop/Top 40" | "Content Production" | "Cooking" | "Cosmetic Medical Services" | "Costume" | "Country Music" | "Coupons and Discounts" | "Cricket" | "Crime & Harmful Acts to Individuals, Society & Human Right Violations" | "Cycling" | "Dance" | "Dance and Electronic Music" | "Darts" | "Dash Cam Videos" | "Dating" | "Death, Injury, or Military Conflict" | "Debated Sensitive Social Issues" | "Design" | "Designer Clothing" | "Desserts and Baking" | "Developmental Sites" | "Digital Arts" | "Dining Out" | "Disabled Sports" | "Diseases and Conditions" | "Diving" | "Divorce" | "Documentary" | "Dogs" | "Drama" | "Early Childhood Education" | "Economy" | "Educational Assessment" | "Eldercare" | "Elections" | "Environment" | "Equine Sports" | "Extreme Sports" | "Factual" | "Family/Children" | "Fan Conventions" | "Fantasy" | "Fantasy Sports" | "Fashion Trends" | "Fiction" | "Field Hockey" | "Figure Skating" | "Financial Assistance" | "Financial Planning" | "Fine Art Photography" | "Fish and Aquariums" | "Fishing Sports" | "Fitness and Exercise" | "Flower Shopping" | "Food Allergies" | "Food Movements" | "Frugal Living" | "Funeral" | "Games and Puzzles" | "Gardening" | "Genealogy and Ancestry" | "Genetics" | "Geography" | "Geology" | "Gifts and Greetings Cards" | "Golf" | "Gospel Music" | "Graduation" | "Grocery Shopping" | "Gymnastics" | "Hate Speech and Acts of Aggression" | "Healthy Cooking and Eating" | "High Fashion" | "Hinduism" | "Hip Hop Music" | "Historic Site and Landmark Tours" | "History" | "Holiday" | "Holiday Shopping" | "Home Appliances" | "Home Entertaining" | "Home Improvement" | "Home Security" | "Home Utilities" | "Homeschooling" | "Homework and Study" | "Horror" | "Hotel Properties" | "Household Supplies" | "Houses" | "Humor and Satire" | "Hunting and Shooting" | "Ice Hockey" | "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" | "Indoor Environmental Quality" | "Industrial Property" | "Industries" | "Inline Skating" | "Inspirational/New Age Music" | "Interior Decorating" | "Islam" | "Jazz" | "Job Search" | "Judaism" | "Lacrosse" | "Land and Farms" | "Landscaping" | "Language Learning" | "Large Animals" | "Lifestyle" | "Lotteries and Scratchcards" | "Magic and Illusion" | "Malls & Shopping Centers" | "Marriage and Civil Unions" | "Martial Arts" | "Medical Tests" | "Men's Fashion" | "Men's Health" | "Mobile Games" | "Model Toys" | "Modern Art" | "Motorcycles" | "Movies" | "Museums & Galleries" | "Music" | "Music Video" | "Musical Instruments" | "Mystery" | "National & Civic Holidays" | "Nature" | "Nightclubs" | "Non-Alcoholic Beverages" | "Nutrition" | "Obscenity and Profanity" | "Office Property" | "Oldies/Adult Standards" | "Olympic Sports" | "Online Education" | "Online Piracy" | "Opera" | "Outdoor Decorating" | "PC Games" | "Paranormal Phenomena" | "Parenting" | "Party Supplies and Decorations" | "Personal Care" | "Personal Debt" | "Personal Investing" | "Personal Taxes" | "Pet Adoptions" | "Pet Supplies" | "Pharmaceutical Drugs" | "Physics" | "Poetry" | "Poker and Professional Gambling" | "Primary Education" | "Private School" | "Prom" | "R&B/Soul/Funk" | "Radio Control" | "Real Estate Buying and Selling" | "Real Estate Renting and Leasing" | "Reality TV" | "Reggae" | "Religious (Music and Audio)" | "Remodeling & Construction" | "Remote Working" | "Reptiles" | "Retail Property" | "Retirement Planning" | "Road-Side Assistance" | "Robotics" | "Rock Music" | "Rodeo" | "Romance" | "Rowing" | "Rugby" | "Sailing" | "Sales and Promotions" | "Sci-fi and Fantasy" | "Science Fiction" | "Scooters" | "Secondary Education" | "Senior Health" | "Sikhism" | "Single Life" | "Skiing" | "Smart Home" | "Snooker/Pool/Billiards" | "Soap Opera" | "Soccer" | "Softball" | "Songwriters/Folk" | "Soundtracks, TV and Showtunes" | "Space and Astronomy" | "Spam or Harmful Content" | "Special Education" | "Special Interest (Indie/Art House)" | "Spirituality" | "Sports Equipment" | "Sports Radio" | "Squash" | "Street Style" | "Surgery" | "Swimming" | "Table Tennis" | "Talk Radio" | "Talk Show" | "Television" | "Tennis" | "Terrorism" | "Theater" | "Theater Venues" | "Thriller" | "Track and Field" | "Travel Accessories" | "Travel Locations" | "Travel Preparation and Advice" | "Travel Type" | "True Crime" | "Urban Contemporary Music" | "Vacation Properties" | "Vaccines" | "Variety (Music and Audio)" | "Vegan Diets" | "Vegetarian Diets" | "Veterinary Medicine" | "Video Game Genres" | "Virtual Reality" | "Vocational Training" | "Volleyball" | "Walking" | "Water Polo" | "Weather" | "Wedding" | "Weight Loss" | "Weightlifting" | "Wellness" | "Western" | "Women's Fashion" | "Women's Health" | "Workshops and Classes" | "World Cuisines" | "World/International Music" | "Wrestling" | "Young Adult" | "Zoos & Aquariums" | "eSports" | "Action Video Games" | "Action-Adventure Video Games" | "Adoption and Fostering" | "Adult Video Games" | "Adventure Travel" | "Adventure Video Games" | "Advertising Industry" | "Africa Travel" | "Agriculture" | "Air Travel" | "Album-oriented Rock" | "Allergies" | "Alternative Medicine" | "Alternative Rock" | "Apparel Industry" | "Asia Travel" | "Audio Production" | "Australia and Oceania Travel" | "Auto Infotainment Technologies" | "Auto Navigation Systems" | "Auto Safety Technologies" | "Automotive Industry" | "Aviation Industry" | "Bath and Shower" | "Beach Travel" | "Beadwork" | "Bed & Breakfasts" | "Biotech and Biomedical Industry" | "Blood Disorders" | "Board Games and Puzzles" | "Bone and Joint Conditions" | "Brain and Nervous System Disorders" | "Budget Cars" | "Budget Travel" | "Business Accounting & Finance" | "Business Administration" | "Business Banking & Finance" | "Business I.T." | "Business Operations" | "Business Travel" | "Business Utilities" | "Cameras and Camcorders" | "Camping" | "Cancer" | "Candle and Soap Making" | "Canoeing and Kayaking" | "Card Games" | "Casino and Gambling Video Games" | "Casual Games" | "Certified Pre-Owned Cars" | "Civil Engineering Industry" | "Classic Cars" | "Classic Rock" | "Climbing" | "Cold and Flu" | "College Baseball" | "College Basketball" | "College Football" | "College Planning" | "Comic Books" | "Commercial Trucks" | "Commodities" | "Computer Networking" | "Computer Peripherals" | "Concept Cars" | "Construction Industry" | "Consumer Issues" | "Convertible" | "Coupe" | "Credit Cards" | "Crossover" | "Cruises" | "Currencies" | "Data Storage and Warehousing" | "Day Trips" | "Daycare and Pre-School" | "Defense Industry" | "Dental Health" | "Deodorant and Antiperspirant" | "Desktops" | "Diabetes" | "Digestive Disorders" | "Drawing and Sketching" | "Driverless Cars" | "Ear, Nose and Throat Conditions" | "Education industry" | "Educational Video Games" | "Endocrine and Metabolic Diseases" | "Entertainment Industry" | "Environmental Services Industry" | "Europe Travel" | "Executive Leadership & Management" | "Exercise and Fitness Video Games" | "Eye and Vision Conditions" | "Family Travel" | "Family Video Games" | "Financial Crisis" | "Financial Industry" | "Financial Reform" | "Financial Regulation" | "Food Industry" | "Foot Health" | "Freelance Writing" | "Gas and Electric" | "Gasoline Prices" | "Government Business" | "Government Support and Welfare" | "Green Solutions" | "Green Vehicles" | "Hair Care" | "Hard Rock" | "Hatchback" | "Health Insurance" | "Healthcare Industry" | "Heart and Cardiovascular Diseases" | "Hedge Funds" | "Home Entertainment Systems" | "Home Financing" | "Home Insurance" | "Honeymoons and Getaways" | "Horror Video Games" | "Horse Racing" | "Hospitality Industry" | "Hotels and Motels" | "Housing Market" | "Human Resources" | "Infectious Diseases" | "Information Services Industry" | "Information and Network Security" | "Injuries" | "Interest Rates" | "Internet" | "Internet Safety" | "Internet Service Providers" | "Jewelry Making" | "Job Fairs" | "Job Market" | "Laptops" | "Large Business" | "Legal Services Industry" | "Life Insurance" | "Logistics" | "Logistics and Transportation Industry" | "Lung and Respiratory Health" | "Luxury Cars" | "MMOs" | "Makeup and Accessories" | "Management Consulting Industry" | "Manufacturing Industry" | "Marketing and Advertising" | "Mechanical and Industrial Engineering Industry" | "Media Industry" | "Men's Accessories" | "Men's Clothing" | "Men's Shoes and Footwear" | "Mental Health" | "Metals Industry" | "Microcar" | "Minivan" | "Motor Insurance" | "Motorcycle Sports" | "Music and Party Video Games" | "Musicals" | "Mutual Funds" | "Nail Care" | "Natural and Organic Beauty" | "Needlework" | "Non-Profit Organizations" | "North America Travel" | "Off-Road Vehicles" | "Oral care" | "Outdoor Attractions" | "Paintball" | "Painting" | "Parenting Babies and Toddlers" | "Parenting Children Aged 4-11" | "Parenting Teens" | "Parks" | "Participant Sports" | "Performance Cars" | "Perfume and Fragrance" | "Personal Loans" | "Pet Insurance" | "Pharmaceutical Industry" | "Phone Services" | "Photography" | "Physical Therapy" | "Pickup Trucks" | "Polar Travel" | "Political Issues & Policy" | "Postgraduate Education" | "Power and Energy Industry" | "Programming Languages" | "Public Radio" | "Publishing Industry" | "Puzzle Video Games" | "Racing Video Games" | "Rail Travel" | "Real Estate Industry" | "Reproductive Health" | "Resume Writing and Advice" | "Retail Industry" | "Road Trips" | "Role-Playing Video Games" | "Roleplaying Games" | "Rugby League" | "Rugby Union" | "Running and Jogging" | "SUV" | "Sales" | "Scrapbooking" | "Screenwriting" | "Scuba Diving" | "Sedan" | "Sexual Health" | "Shaving" | "Simulation Video Games" | "Skateboarding" | "Skin Care" | "Skin and Dermatology" | "Sleep Disorders" | "Small and Medium-sized Business" | "Smartphones" | "Smoking Cessation" | "Snowboarding" | "Soft AC Music" | "Soft Rock" | "South America Travel" | "Spas" | "Special Needs Kids" | "Sports Video Games" | "Stamps and Coins" | "Standardized Testing" | "Startups" | "Station Wagon" | "Stocks and Bonds" | "Strategy Video Games" | "Student Financial Aid" | "Student Loans" | "Substance Abuse" | "Summer Olympic Sports" | "Surfing and Bodyboarding" | "Tablets and E-readers" | "Technology Industry" | "Telecommunications Industry" | "Travel Insurance" | "Undergraduate Education" | "Urban AC Music" | "Van" | "Video Production" | "Water Services" | "Waterskiing and Wakeboarding" | "Wearable Technology" | "Winter Olympic Sports" | "Women's Accessories" | "Women's Clothing" | "Women's Shoes and Footwear" | "Woodworking" | "3-D Graphics" | "Angel Investment" | "Antivirus Software" | "Bankruptcy" | "Birth Control" | "Browsers" | "Business Loans" | "Cloud Computing" | "Computer Animation" | "Databases" | "Debt Factoring & Invoice Discounting" | "Desktop Publishing" | "Digital Audio" | "Email" | "First Aid" | "Graphics Software" | "Herbs and Supplements" | "Holistic Health" | "Hormonal Disorders" | "IT and Internet Support" | "Infertility" | "Internet for Beginners" | "Internet of Things" | "Men's Business Wear" | "Men's Casual Wear" | "Men's Formal Wear" | "Men's Jewelry and Watches" | "Men's Outerwear" | "Men's Sportswear" | "Men's Underwear and Sleepwear" | "Menopause" | "Mergers and Acquisitions" | "Operating Systems" | "Options" | "Photo Editing Software" | "Pregnancy" | "Private Equity" | "Professional School" | "Recalls" | "Sale & Lease Back" | "Search" | "Sexual Conditions" | "Shareware and Freeware" | "Social Networking" | "Software and Applications" | "Thyroid Disorders" | "Venture Capital" | "Video Software" | "Web Conferencing" | "Web Design and HTML" | "Web Development" | "Web Hosting" | "Women's Business Wear" | "Women's Casual Wear" | "Women's Formal Wear" | "Women's Glasses" | "Women's Handbags and Wallets" | "Women's Hats and Scarves" | "Women's Intimates and Sleepwear" | "Women's Jewelry and Watches" | "Women's Outerwear" | "Women's Sportswear" = ...
searchDefaults.companies?
string[] = ...
searchDefaults.publishStart?
Date = ...
searchDefaults.publishEnd?
Date = ...
searchDefaults.visitedStart?
Date = ...
searchDefaults.visitedEnd?
Date = ...
searchDefaults.certain?
boolean = ...
searchDefaults.includeNetlocs?
string[] = ...
searchDefaults.excludeNetlocs?
string[] = ...
searchDefaults.includeCompanies?
string[] = ...
searchDefaults.excludeCompanies?
string[] = ...
searchDefaults.includeDocs?
string[] = ...
searchDefaults.excludeDocs?
string[] = ...
rateLimit?
boolean = ...
Enable automatic rate limiting (default: true). When enabled, the client fetches your current rate limits from the API and automatically throttles requests to stay within quotas.
Returns
NosibleClient
Throws
When no valid API key is provided
Example
// Initialize with string API key
const client = new NosibleClient('your-api-key');
// Initialize with object configuration
const client = new NosibleClient({
apiKey: 'your-nosible-api-key',
llmApiKey: 'your-openrouter-api-key'
});
// Initialize with default search parameters
const client = new NosibleClient({
apiKey: 'your-nosible-api-key',
searchDefaults: {
nResults: 20,
algorithm: 'hybrid-2',
continent: 'North America'
}
});
// Initialize with automatic rate limiting
const client = new NosibleClient({
apiKey: 'your-api-key',
rateLimit: true // Fetches limits and throttles requests automatically
});
// Initialize using environment variables
const client = new NosibleClient();
Properties
api_key_version
api_key_version:
"v1"|"v2"
Defined in: src/client.ts:215
API key version detected from the key format.
- v1: Format is 'key_id|secret_key'
- v2: Format starts with 'nos_sk_'
llmClient
llmClient:
OpenAI|undefined
Defined in: src/client.ts:217
Optional OpenAI client for LLM integration via OpenRouter
expansionsModel
expansionsModel:
string="openai/gpt-4o"
Defined in: src/client.ts:219
LLM model to use for expansions
Methods
limits()
limits():
Promise<{api_key_id:string;subscription_id:string;limits:object[]; }>
Defined in: src/client.ts:468
Fetches current rate limits and usage for the API key.
This method retrieves detailed information about your API rate limits, including per-minute and monthly quotas, current usage, and remaining capacity for different query types (fast, slow/bulk, and visit/scrape).
This method is publicly callable and can be used at any time to check your current rate limit status without consuming any of your quota.
Returns
Promise<{ api_key_id: string; subscription_id: string; limits: object[]; }>
Promise resolving to a LimitsResponse containing limit details
Example
const limits = await client.limits();
console.log(`API Key ID: ${limits.api_key_id}`);
console.log(`Subscription ID: ${limits.subscription_id}`);
limits.limits.forEach(limit => {
console.log(`${limit.name}: ${limit.remaining}/${limit.limit} remaining`);
if (limit.limited) {
console.log(` Rate limited until: ${limit.period_end}`);
}
});
fastSearch()
fastSearch(
params):Promise<ResultSet>
Defined in: src/client.ts:517
Performs a fast search query with optimized performance.
Fast search is designed for quick, efficient queries with smaller result sets. It's ideal for real-time applications, autocomplete features, or when you need rapid responses with a limited number of highly relevant results.
Features:
- Optimized for speed (10-100 results)
- Supports advanced filtering and search algorithms
- Rate limited to prevent quota exceeded errors
- Returns structured ResultSet with metadata
Parameters
params
Search parameters including question, filters, and result count
Returns
Promise<ResultSet>
Promise resolving to a ResultSet containing search results and metadata
Example
// Basic fast search
const results = await client.fastSearch({
question: 'latest AI technology trends',
nResults: 20
});
// Advanced fast search with filters
const filteredResults = await client.fastSearch({
question: 'machine learning startups',
nResults: 50,
algorithm: 'hybrid-2',
minSimilarity: 0.7,
mustInclude: ['artificial intelligence', 'funding'],
mustExclude: ['cryptocurrency'],
continent: 'North America'
});
// Process results
console.log(`Found ${results.length} results`);
for (const result of results) {
console.log(`Title: ${result.title}`);
console.log(`URL: ${result.url}`);
console.log(`Similarity: ${result.similarity}`);
}
fastSearches()
fastSearches(
params):Promise<ResultSet[]>
Defined in: src/client.ts:639
Executes multiple searches in parallel using fast search.
This method allows you to run multiple searches simultaneously, which is significantly faster than executing them sequentially. It accepts either a SearchSet instance or an object containing an array of questions with shared search parameters.
Parameters
params
Either a SearchSet instance or an object with questions and shared parameters
{ questions: string[]; autoGenerateExpansions?: boolean; expansions?: string[]; sqlFilter?: string; algorithm?: "string" | "baseline" | "lexical" | "hamming" | "hybrid-1" | "hybrid-2" | "hybrid-3" | "company"; nResults?: number; nProbes?: number; nContextify?: number; minSimilarity?: number; mustInclude?: string[]; mustExclude?: string[]; brandSafety?: "Safe" | "Sensitive" | "Unsafe"; language?: "af" | "am" | "ar" | "as" | "az" | "be" | "bg" | "bn" | "br" | "bs" | "ca" | "cs" | "cy" | "da" | "de" | "el" | "en" | "eo" | "es" | "et" | "eu" | "fa" | "fi" | "fr" | "fy" | "ga" | "gd" | "gl" | "gu" | "ha" | "he" | "hi" | "hr" | "hu" | "hy" | "id" | "is" | "it" | "ja" | "jv" | "ka" | "kk" | "km" | "kn" | "ko" | "ku" | "ky" | "la" | "lo" | "lt" | "lv" | "mg" | "mk" | "ml" | "mn" | "mr" | "ms" | "my" | "ne" | "nl" | "no" | "om" | "or" | "pa" | "pl" | "ps" | "pt" | "ro" | "ru" | "sa" | "sd" | "sh" | "si" | "sk" | "sl" | "so" | "sq" | "sr" | "su" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "ug" | "uk" | "ur" | "uz" | "vi" | "xh" | "yi" | "zh"; continent?: "Africa" | "Asia" | "Europe" | "North America" | "Oceania" | "South America" | "Worldwide"; region?: "North America" | "Oceania" | "South America" | "Worldwide" | "Caribbean" | "Central Africa" | "Central America" | "Central Asia" | "Central Europe" | "East Africa" | "East Asia" | "Eastern Europe" | "Middle East" | "North Africa" | "Northern Europe" | "South Asia" | "Southeast Asia" | "Southern Africa" | "Southern Europe" | "Sub-Saharan Africa" | "The Amazon Basin" | "The Andes" | "The Arctic Region" | "The Balkans" | "The Caucasus" | "The Horn of Africa" | "The Levant" | "The Middle East" | "The Sahel" | "West Africa" | "Western Europe"; country?: "Worldwide" | "Afghanistan" | "Albania" | "Algeria" | "Andorra" | "Angola" | "Antigua and Barbuda" | "Argentina" | "Armenia" | "Australia" | "Austria" | "Azerbaijan" | "Bahamas" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bhutan" | "Bolivia" | "Bosnia and Herzegovina" | "Botswana" | "Brazil" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cabo Verde" | "Cambodia" | "Cameroon" | "Canada" | "Central African Republic" | "Chad" | "Chile" | "China" | "Colombia" | "Comoros" | "Congo (Congo-Brazzaville)" | "Costa Rica" | "Croatia" | "Cuba" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Eswatini" | "Ethiopia" | "Fiji" | "Finland" | "France" | "Gabon" | "Gambia" | "Georgia" | "Germany" | "Ghana" | "Greece" | "Grenada" | "Guatemala" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Honduras" | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Marshall Islands" | "Mauritania" | "Mauritius" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "North Korea" | "North Macedonia" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Panama" | "Papua New Guinea" | "Paraguay" | "Peru" | "Philippines" | "Poland" | "Portugal" | "Qatar" | "Romania" | "Russia" | "Rwanda" | "Saint Kitts and Nevis" | "Saint Lucia" | "Saint Vincent and the Grenadines" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "Timor-Leste" | "Togo" | "Tonga" | "Trinidad and Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City" | "Venezuela" | "Vietnam" | "Yemen" | "Zambia" | "Zimbabwe"; sector?: "Other" | "Communication Services" | "Consumer Discretionary" | "Consumer Staples" | "Energy" | "Financials" | "Health Care" | "Industrials" | "Information Technology" | "Materials" | "Real Estate" | "Utilities"; industryGroup?: "Other" | "Energy" | "Materials" | "Utilities" | "Automobiles & Components" | "Banks" | "Capital Goods" | "Commercial & Professional Services" | "Consumer Discretionary Distribution & Retail" | "Consumer Durables & Apparel" | "Consumer Services" | "Consumer Staples Distribution & Retail" | "Equity Real Estate Investment Trusts (REITs)" | "Financial Services" | "Food, Beverage & Tobacco" | "Health Care Equipment & Services" | "Household & Personal Products" | "Insurance" | "Media & Entertainment" | "Pharmaceuticals, Biotechnology & Life Sciences" | "Real Estate Management & Development" | "Semiconductors & Semiconductor Equipment" | "Software & Services" | "Technology Hardware & Equipment" | "Telecommunication Services" | "Transportation"; industry?: "Other" | "Banks" | "Consumer Staples Distribution & Retail" | "Financial Services" | "Insurance" | "Real Estate Management & Development" | "Semiconductors & Semiconductor Equipment" | "Aerospace & Defense" | "Air Freight & Logistics" | "Automobile Components" | "Automobiles" | "Beverages" | "Biotechnology" | "Broadline Retail" | "Building Products" | "Capital Markets" | "Chemicals" | "Commercial Services & Supplies" | "Communications Equipment" | "Construction & Engineering" | "Construction Materials" | "Consumer Finance" | "Containers & Packaging" | "Distributors" | "Diversified Consumer Services" | "Diversified REITs" | "Diversified Telecommunication Services" | "Electric Utilities" | "Electrical Equipment" | "Electronic Equipment, Instruments & Components" | "Energy Equipment & Services" | "Entertainment" | "Food Products" | "Gas Utilities" | "Ground Transportation" | "Health Care Equipment & Supplies" | "Health Care Providers & Services" | "Health Care REITs" | "Health Care Technology" | "Hotel & Resort REITs" | "Hotels, Restaurants & Leisure" | "Household Durables" | "Household Products" | "IT Services" | "Independent Power and Renewable Electricity Producers" | "Industrial Conglomerates" | "Industrial REITs" | "Interactive Media & Services" | "Leisure Products" | "Life Sciences Tools & Services" | "Machinery" | "Marine Transportation" | "Media" | "Metals & Mining" | "Mortgage Real Estate Investment Trusts (REITs)" | "Multi-Utilities" | "Office REITs" | "Oil, Gas & Consumable Fuels" | "Paper & Forest Products" | "Passenger Airlines" | "Personal Care Products" | "Pharmaceuticals" | "Professional Services" | "Residential REITs" | "Retail REITs" | "Software" | "Specialized REITs" | "Specialty Retail" | "Technology Hardware, Storage & Peripherals" | "Textiles, Apparel & Luxury Goods" | "Tobacco" | "Trading Companies & Distributors" | "Transportation Infrastructure" | "Water Utilities" | "Wireless Telecommunication Services"; subIndustry?: "Other" | "Aerospace & Defense" | "Air Freight & Logistics" | "Biotechnology" | "Broadline Retail" | "Building Products" | "Communications Equipment" | "Construction & Engineering" | "Construction Materials" | "Consumer Finance" | "Distributors" | "Electric Utilities" | "Gas Utilities" | "Health Care Technology" | "Household Products" | "Industrial Conglomerates" | "Interactive Media & Services" | "Leisure Products" | "Life Sciences Tools & Services" | "Marine Transportation" | "Multi-Utilities" | "Passenger Airlines" | "Personal Care Products" | "Pharmaceuticals" | "Technology Hardware, Storage & Peripherals" | "Tobacco" | "Trading Companies & Distributors" | "Water Utilities" | "Wireless Telecommunication Services" | "Advertising" | "Agricultural & Farm Machinery" | "Agricultural Products & Services" | "Airport Services" | "Alternative Carriers" | "Aluminum" | "Apparel Retail" | "Apparel, Accessories & Luxury Goods" | "Application Software" | "Asset Management & Custody Banks" | "Automobile Manufacturers" | "Automotive Parts & Equipment" | "Automotive Retail" | "Brewers" | "Broadcasting" | "Cable & Satellite" | "Cargo Ground Transportation" | "Casinos & Gaming" | "Coal & Consumable Fuels" | "Commercial & Residential Mortgage Finance" | "Commercial Printing" | "Commodity Chemicals" | "Computer & Electronics Retail" | "Construction Machinery & Heavy Transportation Equipment" | "Consumer Electronics" | "Consumer Staples Merchandise Retail" | "Copper" | "Data Center REITs*" | "Data Processing & Outsourced Services" | "Distillers & Vintners" | "Diversified Banks" | "Diversified Capital Markets" | "Diversified Chemicals" | "Diversified Financial Services" | "Diversified Metals & Mining" | "Diversified REITs*" | "Diversified Real Estate Activities" | "Diversified Support Services" | "Drug Retail" | "Education Services" | "Electrical Components & Equipment" | "Electronic Components" | "Electronic Equipment & Instruments " | "Electronic Manufacturing Services" | "Environmental & Facilities Services" | "Fertilizers & Agricultural Chemicals" | "Financial Exchanges & Data" | "Food Distributors" | "Food Retail" | "Footwear" | "Forest Products" | "Gold" | "Health Care Distributors" | "Health Care Equipment" | "Health Care Facilities" | "Health Care REITs*" | "Health Care Services" | "Health Care Supplies" | "Heavy Electrical Equipment" | "Highways & Railtracks" | "Home Furnishings" | "Home Improvement Retail" | "Homebuilding" | "Homefurnishing Retail" | "Hotel & Resort REITs*" | "Hotels, Resorts & Cruise Lines" | "Household Appliances" | "Housewares & Specialties" | "Human Resource & Employment Services" | "IT Consulting & Other Services" | "Independent Power Producers & Energy Traders" | "Industrial Gases" | "Industrial Machinery & Supplies & Components" | "Industrial REITs*" | "Insurance Brokers" | "Integrated Oil & Gas" | "Integrated Telecommunication Services" | "Interactive Home Entertainment" | "Internet Services & Infrastructure" | "Investment Banking & Brokerage" | "Leisure Facilities" | "Life & Health Insurance" | "Managed Health Care" | "Marine Ports & Services" | "Metal, Glass & Plastic Containers " | "Mortgage REITs*" | "Motorcycle Manufacturers" | "Movies & Entertainment" | "Multi-Family Residential REITs*" | "Multi-Sector Holdings" | "Multi-line Insurance" | "Office REITs*" | "Office Services & Supplies" | "Oil & Gas Drilling" | "Oil & Gas Equipment & Services" | "Oil & Gas Exploration & Production" | "Oil & Gas Refining & Marketing" | "Oil & Gas Storage & Transportation" | "Other Specialized REITs*" | "Other Specialty Retail" | "Packaged Foods & Meats" | "Paper & Plastic Packaging Products & Materials" | "Paper Products" | "Passenger Ground Transportation" | "Precious Metals & Minerals" | "Property & Casualty Insurance" | "Publishing" | "Rail Transportation" | "Real Estate Development" | "Real Estate Operating Companies" | "Real Estate Services" | "Regional Banks" | "Reinsurance" | "Renewable Electricity" | "Research & Consulting Services" | "Restaurants" | "Retail REITs*" | "Security & Alarm Services" | "Self-Storage REITs*" | "Semiconductor Materials & Equipment" | "Semiconductors" | "Silver" | "Single-Family Residential REITs*" | "Soft Drinks & Non-alcoholic Beverages" | "Specialized Consumer Services" | "Specialized Finance" | "Specialty Chemicals" | "Steel" | "Systems Software" | "Technology Distributors" | "Telecom Tower REITs*" | "Textiles" | "Timber REITs*" | "Tires & Rubber" | "Transaction & Payment Processing Services"; iabTier1?: "Real Estate" | "Entertainment" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts"; iabTier2?: "Real Estate" | "Insurance" | "Entertainment" | "Consumer Electronics" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" | "Action/Adventure" | "Adult & Explicit Sexual Content" | "Adult Album Alternative" | "Adult Contemporary Music" | "Adult Education" | "Agnosticism" | "Alcoholic Beverages" | "Alternative Music" | "American Football" | "Amusement and Theme Parks" | "Animation & Anime" | "Anniversary" | "Antiquing and Antiques" | "Apartments" | "Apprenticeships" | "Arms & Ammunition" | "Art and Photography" | "Artificial Intelligence" | "Arts and Crafts" | "Astrology" | "Atheism" | "Augmented Reality" | "Australian Rules Football" | "Auto Body Styles" | "Auto Buying and Selling" | "Auto Insurance" | "Auto Parts" | "Auto Racing" | "Auto Recalls" | "Auto Rentals" | "Auto Repair" | "Auto Safety" | "Auto Shows" | "Auto Technology" | "Auto Type" | "Awards Shows" | "Baby Shower" | "Bachelor Party" | "Bachelorette Party" | "Badminton" | "Barbecues and Grilling" | "Bars & Restaurants" | "Baseball" | "Basketball" | "Beach Volleyball" | "Beauty" | "Beekeeping" | "Bereavement" | "Biographies" | "Biological Sciences" | "Birds" | "Birdwatching" | "Birth" | "Birthday" | "Blues" | "Body Art" | "Bodybuilding" | "Bowling" | "Boxing" | "Buddhism" | "Business" | "Business Expos & Conferences" | "Car Culture" | "Career Advice" | "Career Planning" | "Casinos & Gambling" | "Cats" | "Celebrity Deaths" | "Celebrity Families" | "Celebrity Homes" | "Celebrity Pregnancy" | "Celebrity Relationships" | "Celebrity Scandal" | "Celebrity Style" | "Cheerleading" | "Chemistry" | "Children's Clothing" | "Children's Games and Toys" | "Children's Health" | "Children's Music" | "Christianity" | "Cigars" | "Civic affairs" | "Classic Hits" | "Classical Music" | "Collecting" | "College Education" | "College Radio" | "College Sports" | "Comedy" | "Comedy (Music and Audio)" | "Comics and Graphic Novels" | "Computing" | "Console Games" | "Consumer Banking" | "Contemporary Hits/Pop/Top 40" | "Content Production" | "Cooking" | "Cosmetic Medical Services" | "Costume" | "Country Music" | "Coupons and Discounts" | "Cricket" | "Crime & Harmful Acts to Individuals, Society & Human Right Violations" | "Cycling" | "Dance" | "Dance and Electronic Music" | "Darts" | "Dash Cam Videos" | "Dating" | "Death, Injury, or Military Conflict" | "Debated Sensitive Social Issues" | "Design" | "Designer Clothing" | "Desserts and Baking" | "Developmental Sites" | "Digital Arts" | "Dining Out" | "Disabled Sports" | "Diseases and Conditions" | "Diving" | "Divorce" | "Documentary" | "Dogs" | "Drama" | "Early Childhood Education" | "Economy" | "Educational Assessment" | "Eldercare" | "Elections" | "Environment" | "Equine Sports" | "Extreme Sports" | "Factual" | "Family/Children" | "Fan Conventions" | "Fantasy" | "Fantasy Sports" | "Fashion Trends" | "Fiction" | "Field Hockey" | "Figure Skating" | "Financial Assistance" | "Financial Planning" | "Fine Art Photography" | "Fish and Aquariums" | "Fishing Sports" | "Fitness and Exercise" | "Flower Shopping" | "Food Allergies" | "Food Movements" | "Frugal Living" | "Funeral" | "Games and Puzzles" | "Gardening" | "Genealogy and Ancestry" | "Genetics" | "Geography" | "Geology" | "Gifts and Greetings Cards" | "Golf" | "Gospel Music" | "Graduation" | "Grocery Shopping" | "Gymnastics" | "Hate Speech and Acts of Aggression" | "Healthy Cooking and Eating" | "High Fashion" | "Hinduism" | "Hip Hop Music" | "Historic Site and Landmark Tours" | "History" | "Holiday" | "Holiday Shopping" | "Home Appliances" | "Home Entertaining" | "Home Improvement" | "Home Security" | "Home Utilities" | "Homeschooling" | "Homework and Study" | "Horror" | "Hotel Properties" | "Household Supplies" | "Houses" | "Humor and Satire" | "Hunting and Shooting" | "Ice Hockey" | "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" | "Indoor Environmental Quality" | "Industrial Property" | "Industries" | "Inline Skating" | "Inspirational/New Age Music" | "Interior Decorating" | "Islam" | "Jazz" | "Job Search" | "Judaism" | "Lacrosse" | "Land and Farms" | "Landscaping" | "Language Learning" | "Large Animals" | "Lifestyle" | "Lotteries and Scratchcards" | "Magic and Illusion" | "Malls & Shopping Centers" | "Marriage and Civil Unions" | "Martial Arts" | "Medical Tests" | "Men's Fashion" | "Men's Health" | "Mobile Games" | "Model Toys" | "Modern Art" | "Motorcycles" | "Movies" | "Museums & Galleries" | "Music" | "Music Video" | "Musical" | "Musical Instruments" | "Mystery" | "National & Civic Holidays" | "Nature" | "Nightclubs" | "Non-Alcoholic Beverages" | "Nutrition" | "Obscenity and Profanity" | "Office Property" | "Oldies/Adult Standards" | "Olympic Sports" | "Online Education" | "Online Piracy" | "Opera" | "Outdoor Activities" | "Outdoor Decorating" | "PC Games" | "Paranormal Phenomena" | "Parenting" | "Parks & Nature" | "Party Supplies and Decorations" | "Personal Care" | "Personal Debt" | "Personal Investing" | "Personal Taxes" | "Pet Adoptions" | "Pet Supplies" | "Pharmaceutical Drugs" | "Physics" | "Poetry" | "Poker and Professional Gambling" | "Political Issues & policy" | "Primary Education" | "Private School" | "Prom" | "R&B/Soul/Funk" | "Radio Control" | "Real Estate Buying and Selling" | "Real Estate Renting and Leasing" | "Reality TV" | "Reggae" | "Religious (Music and Audio)" | "Remodeling & Construction" | "Remote Working" | "Reptiles" | "Retail Property" | "Retirement Planning" | "Road-Side Assistance" | "Robotics" | "Rock Music" | "Rodeo" | "Romance" | "Rowing" | "Rugby" | "Sailing" | "Sales and Promotions" | "Sci-fi and Fantasy" | "Science Fiction" | "Scooters" | "Secondary Education" | "Senior Health" | "Sikhism" | "Single Life" | "Skiing" | "Smart Home" | "Snooker/Pool/Billiards" | "Soap Opera" | "Soccer" | "Softball" | "Songwriters/Folk" | "Soundtracks, TV and Showtunes" | "Space and Astronomy" | "Spam or Harmful Content" | "Special Education" | "Special Interest (Indie/Art House)" | "Spirituality" | "Sports Equipment" | "Sports Radio" | "Squash" | "Street Style" | "Surgery" | "Swimming" | "Table Tennis" | "Talk Radio" | "Talk Show" | "Television" | "Tennis" | "Terrorism" | "Theater" | "Theater Venues" | "Thriller" | "Track and Field" | "Travel Accessories" | "Travel Locations" | "Travel Preparation and Advice" | "Travel Type" | "True Crime" | "Urban Contemporary Music" | "Vacation Properties" | "Vaccines" | "Variety (Music and Audio)" | "Vegan Diets" | "Vegetarian Diets" | "Veterinary Medicine" | "Video Game Genres" | "Virtual Reality" | "Vocational Training" | "Volleyball" | "Walking" | "Water Polo" | "Weather" | "Wedding" | "Weight Loss" | "Weightlifting" | "Wellness" | "Western" | "Women's Fashion" | "Women's Health" | "Workshops and Classes" | "World Cuisines" | "World/International Music" | "Wrestling" | "Young Adult" | "Zoos & Aquariums" | "eSports"; iabTier3?: "Real Estate" | "Insurance" | "Entertainment" | "Consumer Electronics" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" | "Action/Adventure" | "Adult & Explicit Sexual Content" | "Adult Album Alternative" | "Adult Contemporary Music" | "Adult Education" | "Agnosticism" | "Alcoholic Beverages" | "Alternative Music" | "American Football" | "Amusement and Theme Parks" | "Animation & Anime" | "Anniversary" | "Antiquing and Antiques" | "Apartments" | "Apprenticeships" | "Arms & Ammunition" | "Art and Photography" | "Artificial Intelligence" | "Arts and Crafts" | "Astrology" | "Atheism" | "Augmented Reality" | "Australian Rules Football" | "Auto Body Styles" | "Auto Buying and Selling" | "Auto Insurance" | "Auto Parts" | "Auto Racing" | "Auto Recalls" | "Auto Rentals" | "Auto Repair" | "Auto Safety" | "Auto Shows" | "Auto Technology" | "Auto Type" | "Awards Shows" | "Baby Shower" | "Bachelor Party" | "Bachelorette Party" | "Badminton" | "Barbecues and Grilling" | "Bars & Restaurants" | "Baseball" | "Basketball" | "Beach Volleyball" | "Beauty" | "Beekeeping" | "Bereavement" | "Biographies" | "Biological Sciences" | "Birds" | "Birdwatching" | "Birth" | "Birthday" | "Blues" | "Body Art" | "Bodybuilding" | "Bowling" | "Boxing" | "Buddhism" | "Business" | "Business Expos & Conferences" | "Car Culture" | "Career Advice" | "Career Planning" | "Casinos & Gambling" | "Cats" | "Celebrity Deaths" | "Celebrity Families" | "Celebrity Homes" | "Celebrity Pregnancy" | "Celebrity Relationships" | "Celebrity Scandal" | "Celebrity Style" | "Cheerleading" | "Chemistry" | "Children's Clothing" | "Children's Games and Toys" | "Children's Health" | "Children's Music" | "Christianity" | "Cigars" | "Civic affairs" | "Classic Hits" | "Classical Music" | "Collecting" | "College Education" | "College Radio" | "College Sports" | "Comedy" | "Comedy (Music and Audio)" | "Comics and Graphic Novels" | "Computing" | "Console Games" | "Consumer Banking" | "Contemporary Hits/Pop/Top 40" | "Content Production" | "Cooking" | "Cosmetic Medical Services" | "Costume" | "Country Music" | "Coupons and Discounts" | "Cricket" | "Crime & Harmful Acts to Individuals, Society & Human Right Violations" | "Cycling" | "Dance" | "Dance and Electronic Music" | "Darts" | "Dash Cam Videos" | "Dating" | "Death, Injury, or Military Conflict" | "Debated Sensitive Social Issues" | "Design" | "Designer Clothing" | "Desserts and Baking" | "Developmental Sites" | "Digital Arts" | "Dining Out" | "Disabled Sports" | "Diseases and Conditions" | "Diving" | "Divorce" | "Documentary" | "Dogs" | "Drama" | "Early Childhood Education" | "Economy" | "Educational Assessment" | "Eldercare" | "Elections" | "Environment" | "Equine Sports" | "Extreme Sports" | "Factual" | "Family/Children" | "Fan Conventions" | "Fantasy" | "Fantasy Sports" | "Fashion Trends" | "Fiction" | "Field Hockey" | "Figure Skating" | "Financial Assistance" | "Financial Planning" | "Fine Art Photography" | "Fish and Aquariums" | "Fishing Sports" | "Fitness and Exercise" | "Flower Shopping" | "Food Allergies" | "Food Movements" | "Frugal Living" | "Funeral" | "Games and Puzzles" | "Gardening" | "Genealogy and Ancestry" | "Genetics" | "Geography" | "Geology" | "Gifts and Greetings Cards" | "Golf" | "Gospel Music" | "Graduation" | "Grocery Shopping" | "Gymnastics" | "Hate Speech and Acts of Aggression" | "Healthy Cooking and Eating" | "High Fashion" | "Hinduism" | "Hip Hop Music" | "Historic Site and Landmark Tours" | "History" | "Holiday" | "Holiday Shopping" | "Home Appliances" | "Home Entertaining" | "Home Improvement" | "Home Security" | "Home Utilities" | "Homeschooling" | "Homework and Study" | "Horror" | "Hotel Properties" | "Household Supplies" | "Houses" | "Humor and Satire" | "Hunting and Shooting" | "Ice Hockey" | "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" | "Indoor Environmental Quality" | "Industrial Property" | "Industries" | "Inline Skating" | "Inspirational/New Age Music" | "Interior Decorating" | "Islam" | "Jazz" | "Job Search" | "Judaism" | "Lacrosse" | "Land and Farms" | "Landscaping" | "Language Learning" | "Large Animals" | "Lifestyle" | "Lotteries and Scratchcards" | "Magic and Illusion" | "Malls & Shopping Centers" | "Marriage and Civil Unions" | "Martial Arts" | "Medical Tests" | "Men's Fashion" | "Men's Health" | "Mobile Games" | "Model Toys" | "Modern Art" | "Motorcycles" | "Movies" | "Museums & Galleries" | "Music" | "Music Video" | "Musical Instruments" | "Mystery" | "National & Civic Holidays" | "Nature" | "Nightclubs" | "Non-Alcoholic Beverages" | "Nutrition" | "Obscenity and Profanity" | "Office Property" | "Oldies/Adult Standards" | "Olympic Sports" | "Online Education" | "Online Piracy" | "Opera" | "Outdoor Decorating" | "PC Games" | "Paranormal Phenomena" | "Parenting" | "Party Supplies and Decorations" | "Personal Care" | "Personal Debt" | "Personal Investing" | "Personal Taxes" | "Pet Adoptions" | "Pet Supplies" | "Pharmaceutical Drugs" | "Physics" | "Poetry" | "Poker and Professional Gambling" | "Primary Education" | "Private School" | "Prom" | "R&B/Soul/Funk" | "Radio Control" | "Real Estate Buying and Selling" | "Real Estate Renting and Leasing" | "Reality TV" | "Reggae" | "Religious (Music and Audio)" | "Remodeling & Construction" | "Remote Working" | "Reptiles" | "Retail Property" | "Retirement Planning" | "Road-Side Assistance" | "Robotics" | "Rock Music" | "Rodeo" | "Romance" | "Rowing" | "Rugby" | "Sailing" | "Sales and Promotions" | "Sci-fi and Fantasy" | "Science Fiction" | "Scooters" | "Secondary Education" | "Senior Health" | "Sikhism" | "Single Life" | "Skiing" | "Smart Home" | "Snooker/Pool/Billiards" | "Soap Opera" | "Soccer" | "Softball" | "Songwriters/Folk" | "Soundtracks, TV and Showtunes" | "Space and Astronomy" | "Spam or Harmful Content" | "Special Education" | "Special Interest (Indie/Art House)" | "Spirituality" | "Sports Equipment" | "Sports Radio" | "Squash" | "Street Style" | "Surgery" | "Swimming" | "Table Tennis" | "Talk Radio" | "Talk Show" | "Television" | "Tennis" | "Terrorism" | "Theater" | "Theater Venues" | "Thriller" | "Track and Field" | "Travel Accessories" | "Travel Locations" | "Travel Preparation and Advice" | "Travel Type" | "True Crime" | "Urban Contemporary Music" | "Vacation Properties" | "Vaccines" | "Variety (Music and Audio)" | "Vegan Diets" | "Vegetarian Diets" | "Veterinary Medicine" | "Video Game Genres" | "Virtual Reality" | "Vocational Training" | "Volleyball" | "Walking" | "Water Polo" | "Weather" | "Wedding" | "Weight Loss" | "Weightlifting" | "Wellness" | "Western" | "Women's Fashion" | "Women's Health" | "Workshops and Classes" | "World Cuisines" | "World/International Music" | "Wrestling" | "Young Adult" | "Zoos & Aquariums" | "eSports" | "Action Video Games" | "Action-Adventure Video Games" | "Adoption and Fostering" | "Adult Video Games" | "Adventure Travel" | "Adventure Video Games" | "Advertising Industry" | "Africa Travel" | "Agriculture" | "Air Travel" | "Album-oriented Rock" | "Allergies" | "Alternative Medicine" | "Alternative Rock" | "Apparel Industry" | "Asia Travel" | "Audio Production" | "Australia and Oceania Travel" | "Auto Infotainment Technologies" | "Auto Navigation Systems" | "Auto Safety Technologies" | "Automotive Industry" | "Aviation Industry" | "Bath and Shower" | "Beach Travel" | "Beadwork" | "Bed & Breakfasts" | "Biotech and Biomedical Industry" | "Blood Disorders" | "Board Games and Puzzles" | "Bone and Joint Conditions" | "Brain and Nervous System Disorders" | "Budget Cars" | "Budget Travel" | "Business Accounting & Finance" | "Business Administration" | "Business Banking & Finance" | "Business I.T." | "Business Operations" | "Business Travel" | "Business Utilities" | "Cameras and Camcorders" | "Camping" | "Cancer" | "Candle and Soap Making" | "Canoeing and Kayaking" | "Card Games" | "Casino and Gambling Video Games" | "Casual Games" | "Certified Pre-Owned Cars" | "Civil Engineering Industry" | "Classic Cars" | "Classic Rock" | "Climbing" | "Cold and Flu" | "College Baseball" | "College Basketball" | "College Football" | "College Planning" | "Comic Books" | "Commercial Trucks" | "Commodities" | "Computer Networking" | "Computer Peripherals" | "Computer Software and Applications" | "Concept Cars" | "Construction Industry" | "Consumer Issues" | "Convertible" | "Coupe" | "Credit Cards" | "Crossover" | "Cruises" | "Currencies" | "Data Storage and Warehousing" | "Day Trips" | "Daycare and Pre-School" | "Defense Industry" | "Dental Health" | "Deodorant and Antiperspirant" | "Desktops" | "Diabetes" | "Digestive Disorders" | "Drawing and Sketching" | "Driverless Cars" | "Ear, Nose and Throat Conditions" | "Education industry" | "Educational Video Games" | "Endocrine and Metabolic Diseases" | "Entertainment Industry" | "Environmental Services Industry" | "Europe Travel" | "Executive Leadership & Management" | "Exercise and Fitness Video Games" | "Eye and Vision Conditions" | "Family Travel" | "Family Video Games" | "Financial Crisis" | "Financial Industry" | "Financial Reform" | "Financial Regulation" | "Food Industry" | "Foot Health" | "Freelance Writing" | "Gas and Electric" | "Gasoline Prices" | "Government Business" | "Government Support and Welfare" | "Green Solutions" | "Green Vehicles" | "Hair Care" | "Hard Rock" | "Hatchback" | "Health Insurance" | "Healthcare Industry" | "Heart and Cardiovascular Diseases" | "Hedge Funds" | "Home Entertainment Systems" | "Home Financing" | "Home Insurance" | "Honeymoons and Getaways" | "Horror Video Games" | "Horse Racing" | "Hospitality Industry" | "Hotels and Motels" | "Housing Market" | "Human Resources" | "Infectious Diseases" | "Information Services Industry" | "Information and Network Security" | "Injuries" | "Interest Rates" | "Internet" | "Internet Safety" | "Internet Service Providers" | "Jewelry Making" | "Job Fairs" | "Job Market" | "Laptops" | "Large Business" | "Legal Services Industry" | "Life Insurance" | "Logistics" | "Logistics and Transportation Industry" | "Lung and Respiratory Health" | "Luxury Cars" | "MMOs" | "Makeup and Accessories" | "Management Consulting Industry" | "Manufacturing Industry" | "Marketing and Advertising" | "Mechanical and Industrial Engineering Industry" | "Media Industry" | "Men's Accessories" | "Men's Clothing" | "Men's Shoes and Footwear" | "Mental Health" | "Metals Industry" | "Microcar" | "Minivan" | "Motor Insurance" | "Motorcycle Sports" | "Music and Party Video Games" | "Musicals" | "Mutual Funds" | "Nail Care" | "Natural and Organic Beauty" | "Needlework" | "Non-Profit Organizations" | "North America Travel" | "Off-Road Vehicles" | "Oral care" | "Outdoor Attractions" | "Paintball" | "Painting" | "Parenting Babies and Toddlers" | "Parenting Children Aged 4-11" | "Parenting Teens" | "Parks" | "Participant Sports" | "Performance Cars" | "Perfume and Fragrance" | "Personal Loans" | "Pet Insurance" | "Pharmaceutical Industry" | "Phone Services" | "Photography" | "Physical Therapy" | "Pickup Trucks" | "Polar Travel" | "Political Issues & Policy" | "Postgraduate Education" | "Power and Energy Industry" | "Programming Languages" | "Public Radio" | "Publishing Industry" | "Puzzle Video Games" | "Racing Video Games" | "Rail Travel" | "Real Estate Industry" | "Reproductive Health" | "Resume Writing and Advice" | "Retail Industry" | "Road Trips" | "Role-Playing Video Games" | "Roleplaying Games" | "Rugby League" | "Rugby Union" | "Running and Jogging" | "SUV" | "Sales" | "Scrapbooking" | "Screenwriting" | "Scuba Diving" | "Sedan" | "Sexual Health" | "Shaving" | "Simulation Video Games" | "Skateboarding" | "Skin Care" | "Skin and Dermatology" | "Sleep Disorders" | "Small and Medium-sized Business" | "Smartphones" | "Smoking Cessation" | "Snowboarding" | "Soft AC Music" | "Soft Rock" | "South America Travel" | "Spas" | "Special Needs Kids" | "Sports Video Games" | "Stamps and Coins" | "Standardized Testing" | "Startups" | "Station Wagon" | "Stocks and Bonds" | "Strategy Video Games" | "Student Financial Aid" | "Student Loans" | "Substance Abuse" | "Summer Olympic Sports" | "Surfing and Bodyboarding" | "Tablets and E-readers" | "Technology Industry" | "Telecommunications Industry" | "Travel Insurance" | "Undergraduate Education" | "Urban AC Music" | "Van" | "Video Production" | "Water Services" | "Waterskiing and Wakeboarding" | "Wearable Technology" | "Winter Olympic Sports" | "Women's Accessories" | "Women's Clothing" | "Women's Shoes and Footwear" | "Woodworking"; iabTier4?: "Real Estate" | "Insurance" | "Entertainment" | "Consumer Electronics" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" | "Action/Adventure" | "Adult & Explicit Sexual Content" | "Adult Album Alternative" | "Adult Contemporary Music" | "Adult Education" | "Agnosticism" | "Alcoholic Beverages" | "Alternative Music" | "American Football" | "Amusement and Theme Parks" | "Animation & Anime" | "Anniversary" | "Antiquing and Antiques" | "Apartments" | "Apprenticeships" | "Arms & Ammunition" | "Art and Photography" | "Artificial Intelligence" | "Arts and Crafts" | "Astrology" | "Atheism" | "Augmented Reality" | "Australian Rules Football" | "Auto Body Styles" | "Auto Buying and Selling" | "Auto Insurance" | "Auto Parts" | "Auto Racing" | "Auto Recalls" | "Auto Rentals" | "Auto Repair" | "Auto Safety" | "Auto Shows" | "Auto Technology" | "Auto Type" | "Awards Shows" | "Baby Shower" | "Bachelor Party" | "Bachelorette Party" | "Badminton" | "Barbecues and Grilling" | "Bars & Restaurants" | "Baseball" | "Basketball" | "Beach Volleyball" | "Beauty" | "Beekeeping" | "Bereavement" | "Biographies" | "Biological Sciences" | "Birds" | "Birdwatching" | "Birth" | "Birthday" | "Blues" | "Body Art" | "Bodybuilding" | "Bowling" | "Boxing" | "Buddhism" | "Business" | "Business Expos & Conferences" | "Car Culture" | "Career Advice" | "Career Planning" | "Casinos & Gambling" | "Cats" | "Celebrity Deaths" | "Celebrity Families" | "Celebrity Homes" | "Celebrity Pregnancy" | "Celebrity Relationships" | "Celebrity Scandal" | "Celebrity Style" | "Cheerleading" | "Chemistry" | "Children's Clothing" | "Children's Games and Toys" | "Children's Health" | "Children's Music" | "Christianity" | "Cigars" | "Civic affairs" | "Classic Hits" | "Classical Music" | "Collecting" | "College Education" | "College Radio" | "College Sports" | "Comedy" | "Comedy (Music and Audio)" | "Comics and Graphic Novels" | "Computing" | "Console Games" | "Consumer Banking" | "Contemporary Hits/Pop/Top 40" | "Content Production" | "Cooking" | "Cosmetic Medical Services" | "Costume" | "Country Music" | "Coupons and Discounts" | "Cricket" | "Crime & Harmful Acts to Individuals, Society & Human Right Violations" | "Cycling" | "Dance" | "Dance and Electronic Music" | "Darts" | "Dash Cam Videos" | "Dating" | "Death, Injury, or Military Conflict" | "Debated Sensitive Social Issues" | "Design" | "Designer Clothing" | "Desserts and Baking" | "Developmental Sites" | "Digital Arts" | "Dining Out" | "Disabled Sports" | "Diseases and Conditions" | "Diving" | "Divorce" | "Documentary" | "Dogs" | "Drama" | "Early Childhood Education" | "Economy" | "Educational Assessment" | "Eldercare" | "Elections" | "Environment" | "Equine Sports" | "Extreme Sports" | "Factual" | "Family/Children" | "Fan Conventions" | "Fantasy" | "Fantasy Sports" | "Fashion Trends" | "Fiction" | "Field Hockey" | "Figure Skating" | "Financial Assistance" | "Financial Planning" | "Fine Art Photography" | "Fish and Aquariums" | "Fishing Sports" | "Fitness and Exercise" | "Flower Shopping" | "Food Allergies" | "Food Movements" | "Frugal Living" | "Funeral" | "Games and Puzzles" | "Gardening" | "Genealogy and Ancestry" | "Genetics" | "Geography" | "Geology" | "Gifts and Greetings Cards" | "Golf" | "Gospel Music" | "Graduation" | "Grocery Shopping" | "Gymnastics" | "Hate Speech and Acts of Aggression" | "Healthy Cooking and Eating" | "High Fashion" | "Hinduism" | "Hip Hop Music" | "Historic Site and Landmark Tours" | "History" | "Holiday" | "Holiday Shopping" | "Home Appliances" | "Home Entertaining" | "Home Improvement" | "Home Security" | "Home Utilities" | "Homeschooling" | "Homework and Study" | "Horror" | "Hotel Properties" | "Household Supplies" | "Houses" | "Humor and Satire" | "Hunting and Shooting" | "Ice Hockey" | "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" | "Indoor Environmental Quality" | "Industrial Property" | "Industries" | "Inline Skating" | "Inspirational/New Age Music" | "Interior Decorating" | "Islam" | "Jazz" | "Job Search" | "Judaism" | "Lacrosse" | "Land and Farms" | "Landscaping" | "Language Learning" | "Large Animals" | "Lifestyle" | "Lotteries and Scratchcards" | "Magic and Illusion" | "Malls & Shopping Centers" | "Marriage and Civil Unions" | "Martial Arts" | "Medical Tests" | "Men's Fashion" | "Men's Health" | "Mobile Games" | "Model Toys" | "Modern Art" | "Motorcycles" | "Movies" | "Museums & Galleries" | "Music" | "Music Video" | "Musical Instruments" | "Mystery" | "National & Civic Holidays" | "Nature" | "Nightclubs" | "Non-Alcoholic Beverages" | "Nutrition" | "Obscenity and Profanity" | "Office Property" | "Oldies/Adult Standards" | "Olympic Sports" | "Online Education" | "Online Piracy" | "Opera" | "Outdoor Decorating" | "PC Games" | "Paranormal Phenomena" | "Parenting" | "Party Supplies and Decorations" | "Personal Care" | "Personal Debt" | "Personal Investing" | "Personal Taxes" | "Pet Adoptions" | "Pet Supplies" | "Pharmaceutical Drugs" | "Physics" | "Poetry" | "Poker and Professional Gambling" | "Primary Education" | "Private School" | "Prom" | "R&B/Soul/Funk" | "Radio Control" | "Real Estate Buying and Selling" | "Real Estate Renting and Leasing" | "Reality TV" | "Reggae" | "Religious (Music and Audio)" | "Remodeling & Construction" | "Remote Working" | "Reptiles" | "Retail Property" | "Retirement Planning" | "Road-Side Assistance" | "Robotics" | "Rock Music" | "Rodeo" | "Romance" | "Rowing" | "Rugby" | "Sailing" | "Sales and Promotions" | "Sci-fi and Fantasy" | "Science Fiction" | "Scooters" | "Secondary Education" | "Senior Health" | "Sikhism" | "Single Life" | "Skiing" | "Smart Home" | "Snooker/Pool/Billiards" | "Soap Opera" | "Soccer" | "Softball" | "Songwriters/Folk" | "Soundtracks, TV and Showtunes" | "Space and Astronomy" | "Spam or Harmful Content" | "Special Education" | "Special Interest (Indie/Art House)" | "Spirituality" | "Sports Equipment" | "Sports Radio" | "Squash" | "Street Style" | "Surgery" | "Swimming" | "Table Tennis" | "Talk Radio" | "Talk Show" | "Television" | "Tennis" | "Terrorism" | "Theater" | "Theater Venues" | "Thriller" | "Track and Field" | "Travel Accessories" | "Travel Locations" | "Travel Preparation and Advice" | "Travel Type" | "True Crime" | "Urban Contemporary Music" | "Vacation Properties" | "Vaccines" | "Variety (Music and Audio)" | "Vegan Diets" | "Vegetarian Diets" | "Veterinary Medicine" | "Video Game Genres" | "Virtual Reality" | "Vocational Training" | "Volleyball" | "Walking" | "Water Polo" | "Weather" | "Wedding" | "Weight Loss" | "Weightlifting" | "Wellness" | "Western" | "Women's Fashion" | "Women's Health" | "Workshops and Classes" | "World Cuisines" | "World/International Music" | "Wrestling" | "Young Adult" | "Zoos & Aquariums" | "eSports" | "Action Video Games" | "Action-Adventure Video Games" | "Adoption and Fostering" | "Adult Video Games" | "Adventure Travel" | "Adventure Video Games" | "Advertising Industry" | "Africa Travel" | "Agriculture" | "Air Travel" | "Album-oriented Rock" | "Allergies" | "Alternative Medicine" | "Alternative Rock" | "Apparel Industry" | "Asia Travel" | "Audio Production" | "Australia and Oceania Travel" | "Auto Infotainment Technologies" | "Auto Navigation Systems" | "Auto Safety Technologies" | "Automotive Industry" | "Aviation Industry" | "Bath and Shower" | "Beach Travel" | "Beadwork" | "Bed & Breakfasts" | "Biotech and Biomedical Industry" | "Blood Disorders" | "Board Games and Puzzles" | "Bone and Joint Conditions" | "Brain and Nervous System Disorders" | "Budget Cars" | "Budget Travel" | "Business Accounting & Finance" | "Business Administration" | "Business Banking & Finance" | "Business I.T." | "Business Operations" | "Business Travel" | "Business Utilities" | "Cameras and Camcorders" | "Camping" | "Cancer" | "Candle and Soap Making" | "Canoeing and Kayaking" | "Card Games" | "Casino and Gambling Video Games" | "Casual Games" | "Certified Pre-Owned Cars" | "Civil Engineering Industry" | "Classic Cars" | "Classic Rock" | "Climbing" | "Cold and Flu" | "College Baseball" | "College Basketball" | "College Football" | "College Planning" | "Comic Books" | "Commercial Trucks" | "Commodities" | "Computer Networking" | "Computer Peripherals" | "Concept Cars" | "Construction Industry" | "Consumer Issues" | "Convertible" | "Coupe" | "Credit Cards" | "Crossover" | "Cruises" | "Currencies" | "Data Storage and Warehousing" | "Day Trips" | "Daycare and Pre-School" | "Defense Industry" | "Dental Health" | "Deodorant and Antiperspirant" | "Desktops" | "Diabetes" | "Digestive Disorders" | "Drawing and Sketching" | "Driverless Cars" | "Ear, Nose and Throat Conditions" | "Education industry" | "Educational Video Games" | "Endocrine and Metabolic Diseases" | "Entertainment Industry" | "Environmental Services Industry" | "Europe Travel" | "Executive Leadership & Management" | "Exercise and Fitness Video Games" | "Eye and Vision Conditions" | "Family Travel" | "Family Video Games" | "Financial Crisis" | "Financial Industry" | "Financial Reform" | "Financial Regulation" | "Food Industry" | "Foot Health" | "Freelance Writing" | "Gas and Electric" | "Gasoline Prices" | "Government Business" | "Government Support and Welfare" | "Green Solutions" | "Green Vehicles" | "Hair Care" | "Hard Rock" | "Hatchback" | "Health Insurance" | "Healthcare Industry" | "Heart and Cardiovascular Diseases" | "Hedge Funds" | "Home Entertainment Systems" | "Home Financing" | "Home Insurance" | "Honeymoons and Getaways" | "Horror Video Games" | "Horse Racing" | "Hospitality Industry" | "Hotels and Motels" | "Housing Market" | "Human Resources" | "Infectious Diseases" | "Information Services Industry" | "Information and Network Security" | "Injuries" | "Interest Rates" | "Internet" | "Internet Safety" | "Internet Service Providers" | "Jewelry Making" | "Job Fairs" | "Job Market" | "Laptops" | "Large Business" | "Legal Services Industry" | "Life Insurance" | "Logistics" | "Logistics and Transportation Industry" | "Lung and Respiratory Health" | "Luxury Cars" | "MMOs" | "Makeup and Accessories" | "Management Consulting Industry" | "Manufacturing Industry" | "Marketing and Advertising" | "Mechanical and Industrial Engineering Industry" | "Media Industry" | "Men's Accessories" | "Men's Clothing" | "Men's Shoes and Footwear" | "Mental Health" | "Metals Industry" | "Microcar" | "Minivan" | "Motor Insurance" | "Motorcycle Sports" | "Music and Party Video Games" | "Musicals" | "Mutual Funds" | "Nail Care" | "Natural and Organic Beauty" | "Needlework" | "Non-Profit Organizations" | "North America Travel" | "Off-Road Vehicles" | "Oral care" | "Outdoor Attractions" | "Paintball" | "Painting" | "Parenting Babies and Toddlers" | "Parenting Children Aged 4-11" | "Parenting Teens" | "Parks" | "Participant Sports" | "Performance Cars" | "Perfume and Fragrance" | "Personal Loans" | "Pet Insurance" | "Pharmaceutical Industry" | "Phone Services" | "Photography" | "Physical Therapy" | "Pickup Trucks" | "Polar Travel" | "Political Issues & Policy" | "Postgraduate Education" | "Power and Energy Industry" | "Programming Languages" | "Public Radio" | "Publishing Industry" | "Puzzle Video Games" | "Racing Video Games" | "Rail Travel" | "Real Estate Industry" | "Reproductive Health" | "Resume Writing and Advice" | "Retail Industry" | "Road Trips" | "Role-Playing Video Games" | "Roleplaying Games" | "Rugby League" | "Rugby Union" | "Running and Jogging" | "SUV" | "Sales" | "Scrapbooking" | "Screenwriting" | "Scuba Diving" | "Sedan" | "Sexual Health" | "Shaving" | "Simulation Video Games" | "Skateboarding" | "Skin Care" | "Skin and Dermatology" | "Sleep Disorders" | "Small and Medium-sized Business" | "Smartphones" | "Smoking Cessation" | "Snowboarding" | "Soft AC Music" | "Soft Rock" | "South America Travel" | "Spas" | "Special Needs Kids" | "Sports Video Games" | "Stamps and Coins" | "Standardized Testing" | "Startups" | "Station Wagon" | "Stocks and Bonds" | "Strategy Video Games" | "Student Financial Aid" | "Student Loans" | "Substance Abuse" | "Summer Olympic Sports" | "Surfing and Bodyboarding" | "Tablets and E-readers" | "Technology Industry" | "Telecommunications Industry" | "Travel Insurance" | "Undergraduate Education" | "Urban AC Music" | "Van" | "Video Production" | "Water Services" | "Waterskiing and Wakeboarding" | "Wearable Technology" | "Winter Olympic Sports" | "Women's Accessories" | "Women's Clothing" | "Women's Shoes and Footwear" | "Woodworking" | "3-D Graphics" | "Angel Investment" | "Antivirus Software" | "Bankruptcy" | "Birth Control" | "Browsers" | "Business Loans" | "Cloud Computing" | "Computer Animation" | "Databases" | "Debt Factoring & Invoice Discounting" | "Desktop Publishing" | "Digital Audio" | "Email" | "First Aid" | "Graphics Software" | "Herbs and Supplements" | "Holistic Health" | "Hormonal Disorders" | "IT and Internet Support" | "Infertility" | "Internet for Beginners" | "Internet of Things" | "Men's Business Wear" | "Men's Casual Wear" | "Men's Formal Wear" | "Men's Jewelry and Watches" | "Men's Outerwear" | "Men's Sportswear" | "Men's Underwear and Sleepwear" | "Menopause" | "Mergers and Acquisitions" | "Operating Systems" | "Options" | "Photo Editing Software" | "Pregnancy" | "Private Equity" | "Professional School" | "Recalls" | "Sale & Lease Back" | "Search" | "Sexual Conditions" | "Shareware and Freeware" | "Social Networking" | "Software and Applications" | "Thyroid Disorders" | "Venture Capital" | "Video Software" | "Web Conferencing" | "Web Design and HTML" | "Web Development" | "Web Hosting" | "Women's Business Wear" | "Women's Casual Wear" | "Women's Formal Wear" | "Women's Glasses" | "Women's Handbags and Wallets" | "Women's Hats and Scarves" | "Women's Intimates and Sleepwear" | "Women's Jewelry and Watches" | "Women's Outerwear" | "Women's Sportswear"; companies?: string[]; publishStart?: Date; publishEnd?: Date; visitedStart?: Date; visitedEnd?: Date; certain?: boolean; includeNetlocs?: string[]; excludeNetlocs?: string[]; includeCompanies?: string[]; excludeCompanies?: string[]; includeDocs?: string[]; excludeDocs?: string[]; }
Either a SearchSet instance or an object with questions and shared parameters
questions
string[] = ...
Array of search questions (when not using SearchSet)
autoGenerateExpansions?
boolean = ...
expansions?
string[] = ...
sqlFilter?
string = ...
algorithm?
"string" | "baseline" | "lexical" | "hamming" | "hybrid-1" | "hybrid-2" | "hybrid-3" | "company" = ...
nResults?
number = ...
nProbes?
number = ...
nContextify?
number = ...
minSimilarity?
number = ...
mustInclude?
string[] = ...
mustExclude?
string[] = ...
brandSafety?
"Safe" | "Sensitive" | "Unsafe" = ...
language?
"af" | "am" | "ar" | "as" | "az" | "be" | "bg" | "bn" | "br" | "bs" | "ca" | "cs" | "cy" | "da" | "de" | "el" | "en" | "eo" | "es" | "et" | "eu" | "fa" | "fi" | "fr" | "fy" | "ga" | "gd" | "gl" | "gu" | "ha" | "he" | "hi" | "hr" | "hu" | "hy" | "id" | "is" | "it" | "ja" | "jv" | "ka" | "kk" | "km" | "kn" | "ko" | "ku" | "ky" | "la" | "lo" | "lt" | "lv" | "mg" | "mk" | "ml" | "mn" | "mr" | "ms" | "my" | "ne" | "nl" | "no" | "om" | "or" | "pa" | "pl" | "ps" | "pt" | "ro" | "ru" | "sa" | "sd" | "sh" | "si" | "sk" | "sl" | "so" | "sq" | "sr" | "su" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "ug" | "uk" | "ur" | "uz" | "vi" | "xh" | "yi" | "zh" = ...
continent?
"Africa" | "Asia" | "Europe" | "North America" | "Oceania" | "South America" | "Worldwide" = ...
region?
"North America" | "Oceania" | "South America" | "Worldwide" | "Caribbean" | "Central Africa" | "Central America" | "Central Asia" | "Central Europe" | "East Africa" | "East Asia" | "Eastern Europe" | "Middle East" | "North Africa" | "Northern Europe" | "South Asia" | "Southeast Asia" | "Southern Africa" | "Southern Europe" | "Sub-Saharan Africa" | "The Amazon Basin" | "The Andes" | "The Arctic Region" | "The Balkans" | "The Caucasus" | "The Horn of Africa" | "The Levant" | "The Middle East" | "The Sahel" | "West Africa" | "Western Europe" = ...
country?
"Worldwide" | "Afghanistan" | "Albania" | "Algeria" | "Andorra" | "Angola" | "Antigua and Barbuda" | "Argentina" | "Armenia" | "Australia" | "Austria" | "Azerbaijan" | "Bahamas" | "Bahrain" | "Bangladesh" | "Barbados" | "Belarus" | "Belgium" | "Belize" | "Benin" | "Bhutan" | "Bolivia" | "Bosnia and Herzegovina" | "Botswana" | "Brazil" | "Brunei" | "Bulgaria" | "Burkina Faso" | "Burundi" | "Cabo Verde" | "Cambodia" | "Cameroon" | "Canada" | "Central African Republic" | "Chad" | "Chile" | "China" | "Colombia" | "Comoros" | "Congo (Congo-Brazzaville)" | "Costa Rica" | "Croatia" | "Cuba" | "Cyprus" | "Czech Republic" | "Democratic Republic of the Congo" | "Denmark" | "Djibouti" | "Dominica" | "Dominican Republic" | "Ecuador" | "Egypt" | "El Salvador" | "Equatorial Guinea" | "Eritrea" | "Estonia" | "Eswatini" | "Ethiopia" | "Fiji" | "Finland" | "France" | "Gabon" | "Gambia" | "Georgia" | "Germany" | "Ghana" | "Greece" | "Grenada" | "Guatemala" | "Guinea" | "Guinea-Bissau" | "Guyana" | "Haiti" | "Honduras" | "Hungary" | "Iceland" | "India" | "Indonesia" | "Iran" | "Iraq" | "Ireland" | "Israel" | "Italy" | "Jamaica" | "Japan" | "Jordan" | "Kazakhstan" | "Kenya" | "Kiribati" | "Kuwait" | "Kyrgyzstan" | "Laos" | "Latvia" | "Lebanon" | "Lesotho" | "Liberia" | "Libya" | "Liechtenstein" | "Lithuania" | "Luxembourg" | "Madagascar" | "Malawi" | "Malaysia" | "Maldives" | "Mali" | "Malta" | "Marshall Islands" | "Mauritania" | "Mauritius" | "Mexico" | "Micronesia" | "Moldova" | "Monaco" | "Mongolia" | "Montenegro" | "Morocco" | "Mozambique" | "Myanmar" | "Namibia" | "Nauru" | "Nepal" | "Netherlands" | "New Zealand" | "Nicaragua" | "Niger" | "Nigeria" | "North Korea" | "North Macedonia" | "Norway" | "Oman" | "Pakistan" | "Palau" | "Panama" | "Papua New Guinea" | "Paraguay" | "Peru" | "Philippines" | "Poland" | "Portugal" | "Qatar" | "Romania" | "Russia" | "Rwanda" | "Saint Kitts and Nevis" | "Saint Lucia" | "Saint Vincent and the Grenadines" | "Samoa" | "San Marino" | "Sao Tome and Principe" | "Saudi Arabia" | "Senegal" | "Serbia" | "Seychelles" | "Sierra Leone" | "Singapore" | "Slovakia" | "Slovenia" | "Solomon Islands" | "Somalia" | "South Africa" | "South Korea" | "South Sudan" | "Spain" | "Sri Lanka" | "Sudan" | "Suriname" | "Sweden" | "Switzerland" | "Syria" | "Taiwan" | "Tajikistan" | "Tanzania" | "Thailand" | "Timor-Leste" | "Togo" | "Tonga" | "Trinidad and Tobago" | "Tunisia" | "Turkey" | "Turkmenistan" | "Tuvalu" | "Uganda" | "Ukraine" | "United Arab Emirates" | "United Kingdom" | "United States" | "Uruguay" | "Uzbekistan" | "Vanuatu" | "Vatican City" | "Venezuela" | "Vietnam" | "Yemen" | "Zambia" | "Zimbabwe" = ...
sector?
"Other" | "Communication Services" | "Consumer Discretionary" | "Consumer Staples" | "Energy" | "Financials" | "Health Care" | "Industrials" | "Information Technology" | "Materials" | "Real Estate" | "Utilities" = ...
industryGroup?
"Other" | "Energy" | "Materials" | "Utilities" | "Automobiles & Components" | "Banks" | "Capital Goods" | "Commercial & Professional Services" | "Consumer Discretionary Distribution & Retail" | "Consumer Durables & Apparel" | "Consumer Services" | "Consumer Staples Distribution & Retail" | "Equity Real Estate Investment Trusts (REITs)" | "Financial Services" | "Food, Beverage & Tobacco" | "Health Care Equipment & Services" | "Household & Personal Products" | "Insurance" | "Media & Entertainment" | "Pharmaceuticals, Biotechnology & Life Sciences" | "Real Estate Management & Development" | "Semiconductors & Semiconductor Equipment" | "Software & Services" | "Technology Hardware & Equipment" | "Telecommunication Services" | "Transportation" = ...
industry?
"Other" | "Banks" | "Consumer Staples Distribution & Retail" | "Financial Services" | "Insurance" | "Real Estate Management & Development" | "Semiconductors & Semiconductor Equipment" | "Aerospace & Defense" | "Air Freight & Logistics" | "Automobile Components" | "Automobiles" | "Beverages" | "Biotechnology" | "Broadline Retail" | "Building Products" | "Capital Markets" | "Chemicals" | "Commercial Services & Supplies" | "Communications Equipment" | "Construction & Engineering" | "Construction Materials" | "Consumer Finance" | "Containers & Packaging" | "Distributors" | "Diversified Consumer Services" | "Diversified REITs" | "Diversified Telecommunication Services" | "Electric Utilities" | "Electrical Equipment" | "Electronic Equipment, Instruments & Components" | "Energy Equipment & Services" | "Entertainment" | "Food Products" | "Gas Utilities" | "Ground Transportation" | "Health Care Equipment & Supplies" | "Health Care Providers & Services" | "Health Care REITs" | "Health Care Technology" | "Hotel & Resort REITs" | "Hotels, Restaurants & Leisure" | "Household Durables" | "Household Products" | "IT Services" | "Independent Power and Renewable Electricity Producers" | "Industrial Conglomerates" | "Industrial REITs" | "Interactive Media & Services" | "Leisure Products" | "Life Sciences Tools & Services" | "Machinery" | "Marine Transportation" | "Media" | "Metals & Mining" | "Mortgage Real Estate Investment Trusts (REITs)" | "Multi-Utilities" | "Office REITs" | "Oil, Gas & Consumable Fuels" | "Paper & Forest Products" | "Passenger Airlines" | "Personal Care Products" | "Pharmaceuticals" | "Professional Services" | "Residential REITs" | "Retail REITs" | "Software" | "Specialized REITs" | "Specialty Retail" | "Technology Hardware, Storage & Peripherals" | "Textiles, Apparel & Luxury Goods" | "Tobacco" | "Trading Companies & Distributors" | "Transportation Infrastructure" | "Water Utilities" | "Wireless Telecommunication Services" = ...
subIndustry?
"Other" | "Aerospace & Defense" | "Air Freight & Logistics" | "Biotechnology" | "Broadline Retail" | "Building Products" | "Communications Equipment" | "Construction & Engineering" | "Construction Materials" | "Consumer Finance" | "Distributors" | "Electric Utilities" | "Gas Utilities" | "Health Care Technology" | "Household Products" | "Industrial Conglomerates" | "Interactive Media & Services" | "Leisure Products" | "Life Sciences Tools & Services" | "Marine Transportation" | "Multi-Utilities" | "Passenger Airlines" | "Personal Care Products" | "Pharmaceuticals" | "Technology Hardware, Storage & Peripherals" | "Tobacco" | "Trading Companies & Distributors" | "Water Utilities" | "Wireless Telecommunication Services" | "Advertising" | "Agricultural & Farm Machinery" | "Agricultural Products & Services" | "Airport Services" | "Alternative Carriers" | "Aluminum" | "Apparel Retail" | "Apparel, Accessories & Luxury Goods" | "Application Software" | "Asset Management & Custody Banks" | "Automobile Manufacturers" | "Automotive Parts & Equipment" | "Automotive Retail" | "Brewers" | "Broadcasting" | "Cable & Satellite" | "Cargo Ground Transportation" | "Casinos & Gaming" | "Coal & Consumable Fuels" | "Commercial & Residential Mortgage Finance" | "Commercial Printing" | "Commodity Chemicals" | "Computer & Electronics Retail" | "Construction Machinery & Heavy Transportation Equipment" | "Consumer Electronics" | "Consumer Staples Merchandise Retail" | "Copper" | "Data Center REITs*" | "Data Processing & Outsourced Services" | "Distillers & Vintners" | "Diversified Banks" | "Diversified Capital Markets" | "Diversified Chemicals" | "Diversified Financial Services" | "Diversified Metals & Mining" | "Diversified REITs*" | "Diversified Real Estate Activities" | "Diversified Support Services" | "Drug Retail" | "Education Services" | "Electrical Components & Equipment" | "Electronic Components" | "Electronic Equipment & Instruments " | "Electronic Manufacturing Services" | "Environmental & Facilities Services" | "Fertilizers & Agricultural Chemicals" | "Financial Exchanges & Data" | "Food Distributors" | "Food Retail" | "Footwear" | "Forest Products" | "Gold" | "Health Care Distributors" | "Health Care Equipment" | "Health Care Facilities" | "Health Care REITs*" | "Health Care Services" | "Health Care Supplies" | "Heavy Electrical Equipment" | "Highways & Railtracks" | "Home Furnishings" | "Home Improvement Retail" | "Homebuilding" | "Homefurnishing Retail" | "Hotel & Resort REITs*" | "Hotels, Resorts & Cruise Lines" | "Household Appliances" | "Housewares & Specialties" | "Human Resource & Employment Services" | "IT Consulting & Other Services" | "Independent Power Producers & Energy Traders" | "Industrial Gases" | "Industrial Machinery & Supplies & Components" | "Industrial REITs*" | "Insurance Brokers" | "Integrated Oil & Gas" | "Integrated Telecommunication Services" | "Interactive Home Entertainment" | "Internet Services & Infrastructure" | "Investment Banking & Brokerage" | "Leisure Facilities" | "Life & Health Insurance" | "Managed Health Care" | "Marine Ports & Services" | "Metal, Glass & Plastic Containers " | "Mortgage REITs*" | "Motorcycle Manufacturers" | "Movies & Entertainment" | "Multi-Family Residential REITs*" | "Multi-Sector Holdings" | "Multi-line Insurance" | "Office REITs*" | "Office Services & Supplies" | "Oil & Gas Drilling" | "Oil & Gas Equipment & Services" | "Oil & Gas Exploration & Production" | "Oil & Gas Refining & Marketing" | "Oil & Gas Storage & Transportation" | "Other Specialized REITs*" | "Other Specialty Retail" | "Packaged Foods & Meats" | "Paper & Plastic Packaging Products & Materials" | "Paper Products" | "Passenger Ground Transportation" | "Precious Metals & Minerals" | "Property & Casualty Insurance" | "Publishing" | "Rail Transportation" | "Real Estate Development" | "Real Estate Operating Companies" | "Real Estate Services" | "Regional Banks" | "Reinsurance" | "Renewable Electricity" | "Research & Consulting Services" | "Restaurants" | "Retail REITs*" | "Security & Alarm Services" | "Self-Storage REITs*" | "Semiconductor Materials & Equipment" | "Semiconductors" | "Silver" | "Single-Family Residential REITs*" | "Soft Drinks & Non-alcoholic Beverages" | "Specialized Consumer Services" | "Specialized Finance" | "Specialty Chemicals" | "Steel" | "Systems Software" | "Technology Distributors" | "Telecom Tower REITs*" | "Textiles" | "Timber REITs*" | "Tires & Rubber" | "Transaction & Payment Processing Services" = ...
iabTier1?
"Real Estate" | "Entertainment" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" = ...
iabTier2?
"Real Estate" | "Insurance" | "Entertainment" | "Consumer Electronics" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" | "Action/Adventure" | "Adult & Explicit Sexual Content" | "Adult Album Alternative" | "Adult Contemporary Music" | "Adult Education" | "Agnosticism" | "Alcoholic Beverages" | "Alternative Music" | "American Football" | "Amusement and Theme Parks" | "Animation & Anime" | "Anniversary" | "Antiquing and Antiques" | "Apartments" | "Apprenticeships" | "Arms & Ammunition" | "Art and Photography" | "Artificial Intelligence" | "Arts and Crafts" | "Astrology" | "Atheism" | "Augmented Reality" | "Australian Rules Football" | "Auto Body Styles" | "Auto Buying and Selling" | "Auto Insurance" | "Auto Parts" | "Auto Racing" | "Auto Recalls" | "Auto Rentals" | "Auto Repair" | "Auto Safety" | "Auto Shows" | "Auto Technology" | "Auto Type" | "Awards Shows" | "Baby Shower" | "Bachelor Party" | "Bachelorette Party" | "Badminton" | "Barbecues and Grilling" | "Bars & Restaurants" | "Baseball" | "Basketball" | "Beach Volleyball" | "Beauty" | "Beekeeping" | "Bereavement" | "Biographies" | "Biological Sciences" | "Birds" | "Birdwatching" | "Birth" | "Birthday" | "Blues" | "Body Art" | "Bodybuilding" | "Bowling" | "Boxing" | "Buddhism" | "Business" | "Business Expos & Conferences" | "Car Culture" | "Career Advice" | "Career Planning" | "Casinos & Gambling" | "Cats" | "Celebrity Deaths" | "Celebrity Families" | "Celebrity Homes" | "Celebrity Pregnancy" | "Celebrity Relationships" | "Celebrity Scandal" | "Celebrity Style" | "Cheerleading" | "Chemistry" | "Children's Clothing" | "Children's Games and Toys" | "Children's Health" | "Children's Music" | "Christianity" | "Cigars" | "Civic affairs" | "Classic Hits" | "Classical Music" | "Collecting" | "College Education" | "College Radio" | "College Sports" | "Comedy" | "Comedy (Music and Audio)" | "Comics and Graphic Novels" | "Computing" | "Console Games" | "Consumer Banking" | "Contemporary Hits/Pop/Top 40" | "Content Production" | "Cooking" | "Cosmetic Medical Services" | "Costume" | "Country Music" | "Coupons and Discounts" | "Cricket" | "Crime & Harmful Acts to Individuals, Society & Human Right Violations" | "Cycling" | "Dance" | "Dance and Electronic Music" | "Darts" | "Dash Cam Videos" | "Dating" | "Death, Injury, or Military Conflict" | "Debated Sensitive Social Issues" | "Design" | "Designer Clothing" | "Desserts and Baking" | "Developmental Sites" | "Digital Arts" | "Dining Out" | "Disabled Sports" | "Diseases and Conditions" | "Diving" | "Divorce" | "Documentary" | "Dogs" | "Drama" | "Early Childhood Education" | "Economy" | "Educational Assessment" | "Eldercare" | "Elections" | "Environment" | "Equine Sports" | "Extreme Sports" | "Factual" | "Family/Children" | "Fan Conventions" | "Fantasy" | "Fantasy Sports" | "Fashion Trends" | "Fiction" | "Field Hockey" | "Figure Skating" | "Financial Assistance" | "Financial Planning" | "Fine Art Photography" | "Fish and Aquariums" | "Fishing Sports" | "Fitness and Exercise" | "Flower Shopping" | "Food Allergies" | "Food Movements" | "Frugal Living" | "Funeral" | "Games and Puzzles" | "Gardening" | "Genealogy and Ancestry" | "Genetics" | "Geography" | "Geology" | "Gifts and Greetings Cards" | "Golf" | "Gospel Music" | "Graduation" | "Grocery Shopping" | "Gymnastics" | "Hate Speech and Acts of Aggression" | "Healthy Cooking and Eating" | "High Fashion" | "Hinduism" | "Hip Hop Music" | "Historic Site and Landmark Tours" | "History" | "Holiday" | "Holiday Shopping" | "Home Appliances" | "Home Entertaining" | "Home Improvement" | "Home Security" | "Home Utilities" | "Homeschooling" | "Homework and Study" | "Horror" | "Hotel Properties" | "Household Supplies" | "Houses" | "Humor and Satire" | "Hunting and Shooting" | "Ice Hockey" | "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" | "Indoor Environmental Quality" | "Industrial Property" | "Industries" | "Inline Skating" | "Inspirational/New Age Music" | "Interior Decorating" | "Islam" | "Jazz" | "Job Search" | "Judaism" | "Lacrosse" | "Land and Farms" | "Landscaping" | "Language Learning" | "Large Animals" | "Lifestyle" | "Lotteries and Scratchcards" | "Magic and Illusion" | "Malls & Shopping Centers" | "Marriage and Civil Unions" | "Martial Arts" | "Medical Tests" | "Men's Fashion" | "Men's Health" | "Mobile Games" | "Model Toys" | "Modern Art" | "Motorcycles" | "Movies" | "Museums & Galleries" | "Music" | "Music Video" | "Musical" | "Musical Instruments" | "Mystery" | "National & Civic Holidays" | "Nature" | "Nightclubs" | "Non-Alcoholic Beverages" | "Nutrition" | "Obscenity and Profanity" | "Office Property" | "Oldies/Adult Standards" | "Olympic Sports" | "Online Education" | "Online Piracy" | "Opera" | "Outdoor Activities" | "Outdoor Decorating" | "PC Games" | "Paranormal Phenomena" | "Parenting" | "Parks & Nature" | "Party Supplies and Decorations" | "Personal Care" | "Personal Debt" | "Personal Investing" | "Personal Taxes" | "Pet Adoptions" | "Pet Supplies" | "Pharmaceutical Drugs" | "Physics" | "Poetry" | "Poker and Professional Gambling" | "Political Issues & policy" | "Primary Education" | "Private School" | "Prom" | "R&B/Soul/Funk" | "Radio Control" | "Real Estate Buying and Selling" | "Real Estate Renting and Leasing" | "Reality TV" | "Reggae" | "Religious (Music and Audio)" | "Remodeling & Construction" | "Remote Working" | "Reptiles" | "Retail Property" | "Retirement Planning" | "Road-Side Assistance" | "Robotics" | "Rock Music" | "Rodeo" | "Romance" | "Rowing" | "Rugby" | "Sailing" | "Sales and Promotions" | "Sci-fi and Fantasy" | "Science Fiction" | "Scooters" | "Secondary Education" | "Senior Health" | "Sikhism" | "Single Life" | "Skiing" | "Smart Home" | "Snooker/Pool/Billiards" | "Soap Opera" | "Soccer" | "Softball" | "Songwriters/Folk" | "Soundtracks, TV and Showtunes" | "Space and Astronomy" | "Spam or Harmful Content" | "Special Education" | "Special Interest (Indie/Art House)" | "Spirituality" | "Sports Equipment" | "Sports Radio" | "Squash" | "Street Style" | "Surgery" | "Swimming" | "Table Tennis" | "Talk Radio" | "Talk Show" | "Television" | "Tennis" | "Terrorism" | "Theater" | "Theater Venues" | "Thriller" | "Track and Field" | "Travel Accessories" | "Travel Locations" | "Travel Preparation and Advice" | "Travel Type" | "True Crime" | "Urban Contemporary Music" | "Vacation Properties" | "Vaccines" | "Variety (Music and Audio)" | "Vegan Diets" | "Vegetarian Diets" | "Veterinary Medicine" | "Video Game Genres" | "Virtual Reality" | "Vocational Training" | "Volleyball" | "Walking" | "Water Polo" | "Weather" | "Wedding" | "Weight Loss" | "Weightlifting" | "Wellness" | "Western" | "Women's Fashion" | "Women's Health" | "Workshops and Classes" | "World Cuisines" | "World/International Music" | "Wrestling" | "Young Adult" | "Zoos & Aquariums" | "eSports" = ...
iabTier3?
"Real Estate" | "Insurance" | "Entertainment" | "Consumer Electronics" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" | "Action/Adventure" | "Adult & Explicit Sexual Content" | "Adult Album Alternative" | "Adult Contemporary Music" | "Adult Education" | "Agnosticism" | "Alcoholic Beverages" | "Alternative Music" | "American Football" | "Amusement and Theme Parks" | "Animation & Anime" | "Anniversary" | "Antiquing and Antiques" | "Apartments" | "Apprenticeships" | "Arms & Ammunition" | "Art and Photography" | "Artificial Intelligence" | "Arts and Crafts" | "Astrology" | "Atheism" | "Augmented Reality" | "Australian Rules Football" | "Auto Body Styles" | "Auto Buying and Selling" | "Auto Insurance" | "Auto Parts" | "Auto Racing" | "Auto Recalls" | "Auto Rentals" | "Auto Repair" | "Auto Safety" | "Auto Shows" | "Auto Technology" | "Auto Type" | "Awards Shows" | "Baby Shower" | "Bachelor Party" | "Bachelorette Party" | "Badminton" | "Barbecues and Grilling" | "Bars & Restaurants" | "Baseball" | "Basketball" | "Beach Volleyball" | "Beauty" | "Beekeeping" | "Bereavement" | "Biographies" | "Biological Sciences" | "Birds" | "Birdwatching" | "Birth" | "Birthday" | "Blues" | "Body Art" | "Bodybuilding" | "Bowling" | "Boxing" | "Buddhism" | "Business" | "Business Expos & Conferences" | "Car Culture" | "Career Advice" | "Career Planning" | "Casinos & Gambling" | "Cats" | "Celebrity Deaths" | "Celebrity Families" | "Celebrity Homes" | "Celebrity Pregnancy" | "Celebrity Relationships" | "Celebrity Scandal" | "Celebrity Style" | "Cheerleading" | "Chemistry" | "Children's Clothing" | "Children's Games and Toys" | "Children's Health" | "Children's Music" | "Christianity" | "Cigars" | "Civic affairs" | "Classic Hits" | "Classical Music" | "Collecting" | "College Education" | "College Radio" | "College Sports" | "Comedy" | "Comedy (Music and Audio)" | "Comics and Graphic Novels" | "Computing" | "Console Games" | "Consumer Banking" | "Contemporary Hits/Pop/Top 40" | "Content Production" | "Cooking" | "Cosmetic Medical Services" | "Costume" | "Country Music" | "Coupons and Discounts" | "Cricket" | "Crime & Harmful Acts to Individuals, Society & Human Right Violations" | "Cycling" | "Dance" | "Dance and Electronic Music" | "Darts" | "Dash Cam Videos" | "Dating" | "Death, Injury, or Military Conflict" | "Debated Sensitive Social Issues" | "Design" | "Designer Clothing" | "Desserts and Baking" | "Developmental Sites" | "Digital Arts" | "Dining Out" | "Disabled Sports" | "Diseases and Conditions" | "Diving" | "Divorce" | "Documentary" | "Dogs" | "Drama" | "Early Childhood Education" | "Economy" | "Educational Assessment" | "Eldercare" | "Elections" | "Environment" | "Equine Sports" | "Extreme Sports" | "Factual" | "Family/Children" | "Fan Conventions" | "Fantasy" | "Fantasy Sports" | "Fashion Trends" | "Fiction" | "Field Hockey" | "Figure Skating" | "Financial Assistance" | "Financial Planning" | "Fine Art Photography" | "Fish and Aquariums" | "Fishing Sports" | "Fitness and Exercise" | "Flower Shopping" | "Food Allergies" | "Food Movements" | "Frugal Living" | "Funeral" | "Games and Puzzles" | "Gardening" | "Genealogy and Ancestry" | "Genetics" | "Geography" | "Geology" | "Gifts and Greetings Cards" | "Golf" | "Gospel Music" | "Graduation" | "Grocery Shopping" | "Gymnastics" | "Hate Speech and Acts of Aggression" | "Healthy Cooking and Eating" | "High Fashion" | "Hinduism" | "Hip Hop Music" | "Historic Site and Landmark Tours" | "History" | "Holiday" | "Holiday Shopping" | "Home Appliances" | "Home Entertaining" | "Home Improvement" | "Home Security" | "Home Utilities" | "Homeschooling" | "Homework and Study" | "Horror" | "Hotel Properties" | "Household Supplies" | "Houses" | "Humor and Satire" | "Hunting and Shooting" | "Ice Hockey" | "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" | "Indoor Environmental Quality" | "Industrial Property" | "Industries" | "Inline Skating" | "Inspirational/New Age Music" | "Interior Decorating" | "Islam" | "Jazz" | "Job Search" | "Judaism" | "Lacrosse" | "Land and Farms" | "Landscaping" | "Language Learning" | "Large Animals" | "Lifestyle" | "Lotteries and Scratchcards" | "Magic and Illusion" | "Malls & Shopping Centers" | "Marriage and Civil Unions" | "Martial Arts" | "Medical Tests" | "Men's Fashion" | "Men's Health" | "Mobile Games" | "Model Toys" | "Modern Art" | "Motorcycles" | "Movies" | "Museums & Galleries" | "Music" | "Music Video" | "Musical Instruments" | "Mystery" | "National & Civic Holidays" | "Nature" | "Nightclubs" | "Non-Alcoholic Beverages" | "Nutrition" | "Obscenity and Profanity" | "Office Property" | "Oldies/Adult Standards" | "Olympic Sports" | "Online Education" | "Online Piracy" | "Opera" | "Outdoor Decorating" | "PC Games" | "Paranormal Phenomena" | "Parenting" | "Party Supplies and Decorations" | "Personal Care" | "Personal Debt" | "Personal Investing" | "Personal Taxes" | "Pet Adoptions" | "Pet Supplies" | "Pharmaceutical Drugs" | "Physics" | "Poetry" | "Poker and Professional Gambling" | "Primary Education" | "Private School" | "Prom" | "R&B/Soul/Funk" | "Radio Control" | "Real Estate Buying and Selling" | "Real Estate Renting and Leasing" | "Reality TV" | "Reggae" | "Religious (Music and Audio)" | "Remodeling & Construction" | "Remote Working" | "Reptiles" | "Retail Property" | "Retirement Planning" | "Road-Side Assistance" | "Robotics" | "Rock Music" | "Rodeo" | "Romance" | "Rowing" | "Rugby" | "Sailing" | "Sales and Promotions" | "Sci-fi and Fantasy" | "Science Fiction" | "Scooters" | "Secondary Education" | "Senior Health" | "Sikhism" | "Single Life" | "Skiing" | "Smart Home" | "Snooker/Pool/Billiards" | "Soap Opera" | "Soccer" | "Softball" | "Songwriters/Folk" | "Soundtracks, TV and Showtunes" | "Space and Astronomy" | "Spam or Harmful Content" | "Special Education" | "Special Interest (Indie/Art House)" | "Spirituality" | "Sports Equipment" | "Sports Radio" | "Squash" | "Street Style" | "Surgery" | "Swimming" | "Table Tennis" | "Talk Radio" | "Talk Show" | "Television" | "Tennis" | "Terrorism" | "Theater" | "Theater Venues" | "Thriller" | "Track and Field" | "Travel Accessories" | "Travel Locations" | "Travel Preparation and Advice" | "Travel Type" | "True Crime" | "Urban Contemporary Music" | "Vacation Properties" | "Vaccines" | "Variety (Music and Audio)" | "Vegan Diets" | "Vegetarian Diets" | "Veterinary Medicine" | "Video Game Genres" | "Virtual Reality" | "Vocational Training" | "Volleyball" | "Walking" | "Water Polo" | "Weather" | "Wedding" | "Weight Loss" | "Weightlifting" | "Wellness" | "Western" | "Women's Fashion" | "Women's Health" | "Workshops and Classes" | "World Cuisines" | "World/International Music" | "Wrestling" | "Young Adult" | "Zoos & Aquariums" | "eSports" | "Action Video Games" | "Action-Adventure Video Games" | "Adoption and Fostering" | "Adult Video Games" | "Adventure Travel" | "Adventure Video Games" | "Advertising Industry" | "Africa Travel" | "Agriculture" | "Air Travel" | "Album-oriented Rock" | "Allergies" | "Alternative Medicine" | "Alternative Rock" | "Apparel Industry" | "Asia Travel" | "Audio Production" | "Australia and Oceania Travel" | "Auto Infotainment Technologies" | "Auto Navigation Systems" | "Auto Safety Technologies" | "Automotive Industry" | "Aviation Industry" | "Bath and Shower" | "Beach Travel" | "Beadwork" | "Bed & Breakfasts" | "Biotech and Biomedical Industry" | "Blood Disorders" | "Board Games and Puzzles" | "Bone and Joint Conditions" | "Brain and Nervous System Disorders" | "Budget Cars" | "Budget Travel" | "Business Accounting & Finance" | "Business Administration" | "Business Banking & Finance" | "Business I.T." | "Business Operations" | "Business Travel" | "Business Utilities" | "Cameras and Camcorders" | "Camping" | "Cancer" | "Candle and Soap Making" | "Canoeing and Kayaking" | "Card Games" | "Casino and Gambling Video Games" | "Casual Games" | "Certified Pre-Owned Cars" | "Civil Engineering Industry" | "Classic Cars" | "Classic Rock" | "Climbing" | "Cold and Flu" | "College Baseball" | "College Basketball" | "College Football" | "College Planning" | "Comic Books" | "Commercial Trucks" | "Commodities" | "Computer Networking" | "Computer Peripherals" | "Computer Software and Applications" | "Concept Cars" | "Construction Industry" | "Consumer Issues" | "Convertible" | "Coupe" | "Credit Cards" | "Crossover" | "Cruises" | "Currencies" | "Data Storage and Warehousing" | "Day Trips" | "Daycare and Pre-School" | "Defense Industry" | "Dental Health" | "Deodorant and Antiperspirant" | "Desktops" | "Diabetes" | "Digestive Disorders" | "Drawing and Sketching" | "Driverless Cars" | "Ear, Nose and Throat Conditions" | "Education industry" | "Educational Video Games" | "Endocrine and Metabolic Diseases" | "Entertainment Industry" | "Environmental Services Industry" | "Europe Travel" | "Executive Leadership & Management" | "Exercise and Fitness Video Games" | "Eye and Vision Conditions" | "Family Travel" | "Family Video Games" | "Financial Crisis" | "Financial Industry" | "Financial Reform" | "Financial Regulation" | "Food Industry" | "Foot Health" | "Freelance Writing" | "Gas and Electric" | "Gasoline Prices" | "Government Business" | "Government Support and Welfare" | "Green Solutions" | "Green Vehicles" | "Hair Care" | "Hard Rock" | "Hatchback" | "Health Insurance" | "Healthcare Industry" | "Heart and Cardiovascular Diseases" | "Hedge Funds" | "Home Entertainment Systems" | "Home Financing" | "Home Insurance" | "Honeymoons and Getaways" | "Horror Video Games" | "Horse Racing" | "Hospitality Industry" | "Hotels and Motels" | "Housing Market" | "Human Resources" | "Infectious Diseases" | "Information Services Industry" | "Information and Network Security" | "Injuries" | "Interest Rates" | "Internet" | "Internet Safety" | "Internet Service Providers" | "Jewelry Making" | "Job Fairs" | "Job Market" | "Laptops" | "Large Business" | "Legal Services Industry" | "Life Insurance" | "Logistics" | "Logistics and Transportation Industry" | "Lung and Respiratory Health" | "Luxury Cars" | "MMOs" | "Makeup and Accessories" | "Management Consulting Industry" | "Manufacturing Industry" | "Marketing and Advertising" | "Mechanical and Industrial Engineering Industry" | "Media Industry" | "Men's Accessories" | "Men's Clothing" | "Men's Shoes and Footwear" | "Mental Health" | "Metals Industry" | "Microcar" | "Minivan" | "Motor Insurance" | "Motorcycle Sports" | "Music and Party Video Games" | "Musicals" | "Mutual Funds" | "Nail Care" | "Natural and Organic Beauty" | "Needlework" | "Non-Profit Organizations" | "North America Travel" | "Off-Road Vehicles" | "Oral care" | "Outdoor Attractions" | "Paintball" | "Painting" | "Parenting Babies and Toddlers" | "Parenting Children Aged 4-11" | "Parenting Teens" | "Parks" | "Participant Sports" | "Performance Cars" | "Perfume and Fragrance" | "Personal Loans" | "Pet Insurance" | "Pharmaceutical Industry" | "Phone Services" | "Photography" | "Physical Therapy" | "Pickup Trucks" | "Polar Travel" | "Political Issues & Policy" | "Postgraduate Education" | "Power and Energy Industry" | "Programming Languages" | "Public Radio" | "Publishing Industry" | "Puzzle Video Games" | "Racing Video Games" | "Rail Travel" | "Real Estate Industry" | "Reproductive Health" | "Resume Writing and Advice" | "Retail Industry" | "Road Trips" | "Role-Playing Video Games" | "Roleplaying Games" | "Rugby League" | "Rugby Union" | "Running and Jogging" | "SUV" | "Sales" | "Scrapbooking" | "Screenwriting" | "Scuba Diving" | "Sedan" | "Sexual Health" | "Shaving" | "Simulation Video Games" | "Skateboarding" | "Skin Care" | "Skin and Dermatology" | "Sleep Disorders" | "Small and Medium-sized Business" | "Smartphones" | "Smoking Cessation" | "Snowboarding" | "Soft AC Music" | "Soft Rock" | "South America Travel" | "Spas" | "Special Needs Kids" | "Sports Video Games" | "Stamps and Coins" | "Standardized Testing" | "Startups" | "Station Wagon" | "Stocks and Bonds" | "Strategy Video Games" | "Student Financial Aid" | "Student Loans" | "Substance Abuse" | "Summer Olympic Sports" | "Surfing and Bodyboarding" | "Tablets and E-readers" | "Technology Industry" | "Telecommunications Industry" | "Travel Insurance" | "Undergraduate Education" | "Urban AC Music" | "Van" | "Video Production" | "Water Services" | "Waterskiing and Wakeboarding" | "Wearable Technology" | "Winter Olympic Sports" | "Women's Accessories" | "Women's Clothing" | "Women's Shoes and Footwear" | "Woodworking" = ...
iabTier4?
"Real Estate" | "Insurance" | "Entertainment" | "Consumer Electronics" | "Attractions" | "Automotive" | "Books and Literature" | "Business and Finance" | "Careers" | "Communication" | "Crime" | "Disasters" | "Education" | "Events" | "Family and Relationships" | "Fine Art" | "Food & Drink" | "Genres" | "Healthy Living" | "Hobbies & Interests" | "Holidays" | "Home & Garden" | "Law" | "Maps & Navigation" | "Medical Health" | "Personal Celebrations & Life Events" | "Personal Finance" | "Pets" | "Politics" | "Pop Culture" | "Productivity" | "Religion & Spirituality" | "Science" | "Sensitive Topics" | "Shopping" | "Sports" | "Style & Fashion" | "Technology & Computing" | "Travel" | "Video Gaming" | "War and Conflicts" | "Action/Adventure" | "Adult & Explicit Sexual Content" | "Adult Album Alternative" | "Adult Contemporary Music" | "Adult Education" | "Agnosticism" | "Alcoholic Beverages" | "Alternative Music" | "American Football" | "Amusement and Theme Parks" | "Animation & Anime" | "Anniversary" | "Antiquing and Antiques" | "Apartments" | "Apprenticeships" | "Arms & Ammunition" | "Art and Photography" | "Artificial Intelligence" | "Arts and Crafts" | "Astrology" | "Atheism" | "Augmented Reality" | "Australian Rules Football" | "Auto Body Styles" | "Auto Buying and Selling" | "Auto Insurance" | "Auto Parts" | "Auto Racing" | "Auto Recalls" | "Auto Rentals" | "Auto Repair" | "Auto Safety" | "Auto Shows" | "Auto Technology" | "Auto Type" | "Awards Shows" | "Baby Shower" | "Bachelor Party" | "Bachelorette Party" | "Badminton" | "Barbecues and Grilling" | "Bars & Restaurants" | "Baseball" | "Basketball" | "Beach Volleyball" | "Beauty" | "Beekeeping" | "Bereavement" | "Biographies" | "Biological Sciences" | "Birds" | "Birdwatching" | "Birth" | "Birthday" | "Blues" | "Body Art" | "Bodybuilding" | "Bowling" | "Boxing" | "Buddhism" | "Business" | "Business Expos & Conferences" | "Car Culture" | "Career Advice" | "Career Planning" | "Casinos & Gambling" | "Cats" | "Celebrity Deaths" | "Celebrity Families" | "Celebrity Homes" | "Celebrity Pregnancy" | "Celebrity Relationships" | "Celebrity Scandal" | "Celebrity Style" | "Cheerleading" | "Chemistry" | "Children's Clothing" | "Children's Games and Toys" | "Children's Health" | "Children's Music" | "Christianity" | "Cigars" | "Civic affairs" | "Classic Hits" | "Classical Music" | "Collecting" | "College Education" | "College Radio" | "College Sports" | "Comedy" | "Comedy (Music and Audio)" | "Comics and Graphic Novels" | "Computing" | "Console Games" | "Consumer Banking" | "Contemporary Hits/Pop/Top 40" | "Content Production" | "Cooking" | "Cosmetic Medical Services" | "Costume" | "Country Music" | "Coupons and Discounts" | "Cricket" | "Crime & Harmful Acts to Individuals, Society & Human Right Violations" | "Cycling" | "Dance" | "Dance and Electronic Music" | "Darts" | "Dash Cam Videos" | "Dating" | "Death, Injury, or Military Conflict" | "Debated Sensitive Social Issues" | "Design" | "Designer Clothing" | "Desserts and Baking" | "Developmental Sites" | "Digital Arts" | "Dining Out" | "Disabled Sports" | "Diseases and Conditions" | "Diving" | "Divorce" | "Documentary" | "Dogs" | "Drama" | "Early Childhood Education" | "Economy" | "Educational Assessment" | "Eldercare" | "Elections" | "Environment" | "Equine Sports" | "Extreme Sports" | "Factual" | "Family/Children" | "Fan Conventions" | "Fantasy" | "Fantasy Sports" | "Fashion Trends" | "Fiction" | "Field Hockey" | "Figure Skating" | "Financial Assistance" | "Financial Planning" | "Fine Art Photography" | "Fish and Aquariums" | "Fishing Sports" | "Fitness and Exercise" | "Flower Shopping" | "Food Allergies" | "Food Movements" | "Frugal Living" | "Funeral" | "Games and Puzzles" | "Gardening" | "Genealogy and Ancestry" | "Genetics" | "Geography" | "Geology" | "Gifts and Greetings Cards" | "Golf" | "Gospel Music" | "Graduation" | "Grocery Shopping" | "Gymnastics" | "Hate Speech and Acts of Aggression" | "Healthy Cooking and Eating" | "High Fashion" | "Hinduism" | "Hip Hop Music" | "Historic Site and Landmark Tours" | "History" | "Holiday" | "Holiday Shopping" | "Home Appliances" | "Home Entertaining" | "Home Improvement" | "Home Security" | "Home Utilities" | "Homeschooling" | "Homework and Study" | "Horror" | "Hotel Properties" | "Household Supplies" | "Houses" | "Humor and Satire" | "Hunting and Shooting" | "Ice Hockey" | "Illegal Drugs, Tobacco, eCigarettes, Vaping, Alcohol" | "Indoor Environmental Quality" | "Industrial Property" | "Industries" | "Inline Skating" | "Inspirational/New Age Music" | "Interior Decorating" | "Islam" | "Jazz" | "Job Search" | "Judaism" | "Lacrosse" | "Land and Farms" | "Landscaping" | "Language Learning" | "Large Animals" | "Lifestyle" | "Lotteries and Scratchcards" | "Magic and Illusion" | "Malls & Shopping Centers" | "Marriage and Civil Unions" | "Martial Arts" | "Medical Tests" | "Men's Fashion" | "Men's Health" | "Mobile Games" | "Model Toys" | "Modern Art" | "Motorcycles" | "Movies" | "Museums & Galleries" | "Music" | "Music Video" | "Musical Instruments" | "Mystery" | "National & Civic Holidays" | "Nature" | "Nightclubs" | "Non-Alcoholic Beverages" | "Nutrition" | "Obscenity and Profanity" | "Office Property" | "Oldies/Adult Standards" | "Olympic Sports" | "Online Education" | "Online Piracy" | "Opera" | "Outdoor Decorating" | "PC Games" | "Paranormal Phenomena" | "Parenting" | "Party Supplies and Decorations" | "Personal Care" | "Personal Debt" | "Personal Investing" | "Personal Taxes" | "Pet Adoptions" | "Pet Supplies" | "Pharmaceutical Drugs" | "Physics" | "Poetry" | "Poker and Professional Gambling" | "Primary Education" | "Private School" | "Prom" | "R&B/Soul/Funk" | "Radio Control" | "Real Estate Buying and Selling" | "Real Estate Renting and Leasing" | "Reality TV" | "Reggae" | "Religious (Music and Audio)" | "Remodeling & Construction" | "Remote Working" | "Reptiles" | "Retail Property" | "Retirement Planning" | "Road-Side Assistance" | "Robotics" | "Rock Music" | "Rodeo" | "Romance" | "Rowing" | "Rugby" | "Sailing" | "Sales and Promotions" | "Sci-fi and Fantasy" | "Science Fiction" | "Scooters" | "Secondary Education" | "Senior Health" | "Sikhism" | "Single Life" | "Skiing" | "Smart Home" | "Snooker/Pool/Billiards" | "Soap Opera" | "Soccer" | "Softball" | "Songwriters/Folk" | "Soundtracks, TV and Showtunes" | "Space and Astronomy" | "Spam or Harmful Content" | "Special Education" | "Special Interest (Indie/Art House)" | "Spirituality" | "Sports Equipment" | "Sports Radio" | "Squash" | "Street Style" | "Surgery" | "Swimming" | "Table Tennis" | "Talk Radio" | "Talk Show" | "Television" | "Tennis" | "Terrorism" | "Theater" | "Theater Venues" | "Thriller" | "Track and Field" | "Travel Accessories" | "Travel Locations" | "Travel Preparation and Advice" | "Travel Type" | "True Crime" | "Urban Contemporary Music" | "Vacation Properties" | "Vaccines" | "Variety (Music and Audio)" | "Vegan Diets" | "Vegetarian Diets" | "Veterinary Medicine" | "Video Game Genres" | "Virtual Reality" | "Vocational Training" | "Volleyball" | "Walking" | "Water Polo" | "Weather" | "Wedding" | "Weight Loss" | "Weightlifting" | "Wellness" | "Western" | "Women's Fashion" | "Women's Health" | "Workshops and Classes" | "World Cuisines" | "World/International Music" | "Wrestling" | "Young Adult" | "Zoos & Aquariums" | "eSports" | "Action Video Games" | "Action-Adventure Video Games" | "Adoption and Fostering" | "Adult Video Games" | "Adventure Travel" | "Adventure Video Games" | "Advertising Industry" | "Africa Travel" | "Agriculture" | "Air Travel" | "Album-oriented Rock" | "Allergies" | "Alternative Medicine" | "Alternative Rock" | "Apparel Industry" | "Asia Travel" | "Audio Production" | "Australia and Oceania Travel" | "Auto Infotainment Technologies" | "Auto Navigation Systems" | "Auto Safety Technologies" | "Automotive Industry" | "Aviation Industry" | "Bath and Shower" | "Beach Travel" | "Beadwork" | "Bed & Breakfasts" | "Biotech and Biomedical Industry" | "Blood Disorders" | "Board Games and Puzzles" | "Bone and Joint Conditions" | "Brain and Nervous System Disorders" | "Budget Cars" | "Budget Travel" | "Business Accounting & Finance" | "Business Administration" | "Business Banking & Finance" | "Business I.T." | "Business Operations" | "Business Travel" | "Business Utilities" | "Cameras and Camcorders" | "Camping" | "Cancer" | "Candle and Soap Making" | "Canoeing and Kayaking" | "Card Games" | "Casino and Gambling Video Games" | "Casual Games" | "Certified Pre-Owned Cars" | "Civil Engineering Industry" | "Classic Cars" | "Classic Rock" | "Climbing" | "Cold and Flu" | "College Baseball" | "College Basketball" | "College Football" | "College Planning" | "Comic Books" | "Commercial Trucks" | "Commodities" | "Computer Networking" | "Computer Peripherals" | "Concept Cars" | "Construction Industry" | "Consumer Issues" | "Convertible" | "Coupe" | "Credit Cards" | "Crossover" | "Cruises" | "Currencies" | "Data Storage and Warehousing" | "Day Trips" | "Daycare and Pre-School" | "Defense Industry" | "Dental Health" | "Deodorant and Antiperspirant" | "Desktops" | "Diabetes" | "Digestive Disorders" | "Drawing and Sketching" | "Driverless Cars" | "Ear, Nose and Throat Conditions" | "Education industry" | "Educational Video Games" | "Endocrine and Metabolic Diseases" | "Entertainment Industry" | "Environmental Services Industry" | "Europe Travel" | "Executive Leadership & Management" | "Exercise and Fitness Video Games" | "Eye and Vision Conditions" | "Family Travel" | "Family Video Games" | "Financial Crisis" | "Financial Industry" | "Financial Reform" | "Financial Regulation" | "Food Industry" | "Foot Health" | "Freelance Writing" | "Gas and Electric" | "Gasoline Prices" | "Government Business" | "Government Support and Welfare" | "Green Solutions" | "Green Vehicles" | "Hair Care" | "Hard Rock" | "Hatchback" | "Health Insurance" | "Healthcare Industry" | "Heart and Cardiovascular Diseases" | "Hedge Funds" | "Home Entertainment Systems" | "Home Financing" | "Home Insurance" | "Honeymoons and Getaways" | "Horror Video Games" | "Horse Racing" | "Hospitality Industry" | "Hotels and Motels" | "Housing Market" | "Human Resources" | "Infectious Diseases" | "Information Services Industry" | "Information and Network Security" | "Injuries" | "Interest Rates" | "Internet" | "Internet Safety" | "Internet Service Providers" | "Jewelry Making" | "Job Fairs" | "Job Market" | "Laptops" | "Large Business" | "Legal Services Industry" | "Life Insurance" | "Logistics" | "Logistics and Transportation Industry" | "Lung and Respiratory Health" | "Luxury Cars" | "MMOs" | "Makeup and Accessories" | "Management Consulting Industry" | "Manufacturing Industry" | "Marketing and Advertising" | "Mechanical and Industrial Engineering Industry" | "Media Industry" | "Men's Accessories" | "Men's Clothing" | "Men's Shoes and Footwear" | "Mental Health" | "Metals Industry" | "Microcar" | "Minivan" | "Motor Insurance" | "Motorcycle Sports" | "Music and Party Video Games" | "Musicals" | "Mutual Funds" | "Nail Care" | "Natural and Organic Beauty" | "Needlework" | "Non-Profit Organizations" | "North America Travel" | "Off-Road Vehicles" | "Oral care" | "Outdoor Attractions" | "Paintball" | "Painting" | "Parenting Babies and Toddlers" | "Parenting Children Aged 4-11" | "Parenting Teens" | "Parks" | "Participant Sports" | "Performance Cars" | "Perfume and Fragrance" | "Personal Loans" | "Pet Insurance" | "Pharmaceutical Industry" | "Phone Services" | "Photography" | "Physical Therapy" | "Pickup Trucks" | "Polar Travel" | "Political Issues & Policy" | "Postgraduate Education" | "Power and Energy Industry" | "Programming Languages" | "Public Radio" | "Publishing Industry" | "Puzzle Video Games" | "Racing Video Games" | "Rail Travel" | "Real Estate Industry" | "Reproductive Health" | "Resume Writing and Advice" | "Retail Industry" | "Road Trips" | "Role-Playing Video Games" | "Roleplaying Games" | "Rugby League" | "Rugby Union" | "Running and Jogging" | "SUV" | "Sales" | "Scrapbooking" | "Screenwriting" | "Scuba Diving" | "Sedan" | "Sexual Health" | "Shaving" | "Simulation Video Games" | "Skateboarding" | "Skin Care" | "Skin and Dermatology" | "Sleep Disorders" | "Small and Medium-sized Business" | "Smartphones" | "Smoking Cessation" | "Snowboarding" | "Soft AC Music" | "Soft Rock" | "South America Travel" | "Spas" | "Special Needs Kids" | "Sports Video Games" | "Stamps and Coins" | "Standardized Testing" | "Startups" | "Station Wagon" | "Stocks and Bonds" | "Strategy Video Games" | "Student Financial Aid" | "Student Loans" | "Substance Abuse" | "Summer Olympic Sports" | "Surfing and Bodyboarding" | "Tablets and E-readers" | "Technology Industry" | "Telecommunications Industry" | "Travel Insurance" | "Undergraduate Education" | "Urban AC Music" | "Van" | "Video Production" | "Water Services" | "Waterskiing and Wakeboarding" | "Wearable Technology" | "Winter Olympic Sports" | "Women's Accessories" | "Women's Clothing" | "Women's Shoes and Footwear" | "Woodworking" | "3-D Graphics" | "Angel Investment" | "Antivirus Software" | "Bankruptcy" | "Birth Control" | "Browsers" | "Business Loans" | "Cloud Computing" | "Computer Animation" | "Databases" | "Debt Factoring & Invoice Discounting" | "Desktop Publishing" | "Digital Audio" | "Email" | "First Aid" | "Graphics Software" | "Herbs and Supplements" | "Holistic Health" | "Hormonal Disorders" | "IT and Internet Support" | "Infertility" | "Internet for Beginners" | "Internet of Things" | "Men's Business Wear" | "Men's Casual Wear" | "Men's Formal Wear" | "Men's Jewelry and Watches" | "Men's Outerwear" | "Men's Sportswear" | "Men's Underwear and Sleepwear" | "Menopause" | "Mergers and Acquisitions" | "Operating Systems" | "Options" | "Photo Editing Software" | "Pregnancy" | "Private Equity" | "Professional School" | "Recalls" | "Sale & Lease Back" | "Search" | "Sexual Conditions" | "Shareware and Freeware" | "Social Networking" | "Software and Applications" | "Thyroid Disorders" | "Venture Capital" | "Video Software" | "Web Conferencing" | "Web Design and HTML" | "Web Development" | "Web Hosting" | "Women's Business Wear" | "Women's Casual Wear" | "Women's Formal Wear" | "Women's Glasses" | "Women's Handbags and Wallets" | "Women's Hats and Scarves" | "Women's Intimates and Sleepwear" | "Women's Jewelry and Watches" | "Women's Outerwear" | "Women's Sportswear" = ...
companies?
string[] = ...
publishStart?
Date = ...
publishEnd?
Date = ...
visitedStart?
Date = ...
visitedEnd?
Date = ...
certain?
boolean = ...
includeNetlocs?
string[] = ...
excludeNetlocs?
string[] = ...
includeCompanies?
string[] = ...
excludeCompanies?
string[] = ...
includeDocs?
string[] = ...
excludeDocs?
string[] = ...
Returns
Promise<ResultSet[]>
Promise that resolves to an array of ResultSet objects, one for each search
Examples
// Using SearchSet instance
const search1 = new Search({ question: "machine learning", nResults: 10 });
const search2 = new Search({ question: "artificial intelligence", nResults: 10 });
const searchSet = new SearchSet([search1, search2]);
const results = await client.fastSearches(searchSet);
// results[0] contains results for "machine learning"
// results[1] contains results for "artificial intelligence"
// Using questions array with shared parameters
const params = {
questions: [
"renewable energy trends",
"solar power developments",
"wind energy innovations"
],
nResults: 15,
language: "en",
region: "us",
publishStart: new Date("2023-01-01")
};
const results = await client.fastSearches(params);
// All searches use the same shared parameters but different questions
// Advanced usage with mixed parameters
const searches = [
new Search({
question: "blockchain technology",
nResults: 20,
algorithm: "cosine"
}),
new Search({
question: "cryptocurrency markets",
nResults: 15,
minSimilarity: 0.8
})
];
const searchSet = new SearchSet(searches);
const results = await client.fastSearches(searchSet);
aiSearch()
aiSearch(
params):Promise<ResultSet>
Defined in: src/client.ts:710
Performs an AI-powered search with custom instructions.
AI search leverages advanced language models to understand complex queries and custom instructions, providing more contextually relevant results. This method is ideal for nuanced searches that require understanding intent, context, or specific analytical requirements.
Features:
- Natural language understanding of complex queries
- Custom instructions for specialized search behavior
- Context-aware result ranking and filtering
- Rate limited for optimal performance
Parameters
params
AI search parameters including question and custom instructions
prompt
string = ...
agent?
string = ...
Returns
Promise<ResultSet>
Promise resolving to a ResultSet containing AI-enhanced search results
Example
// Basic AI search
const results = await client.aiSearch({
question: 'What are the environmental impacts of renewable energy?',
instruction: 'Focus on recent studies and quantitative data'
});
// AI search with specific analytical focus
const analysisResults = await client.aiSearch({
question: 'company financial performance',
instruction: 'Compare revenue growth and profit margins across quarters',
nResults: 25,
algorithm: 'hybrid-3'
});
// AI search for competitive analysis
const competitiveResults = await client.aiSearch({
question: 'competitors in the cloud computing market',
instruction: 'Identify key players, market share, and competitive advantages'
});
bulkSearch()
bulkSearch(
params):Promise<ResultSet>
Defined in: src/client.ts:788
Performs a bulk search for large-scale data collection.
Bulk search is designed for comprehensive data gathering and analysis tasks. It supports large result sets (1000-10000 results) and provides efficient download mechanisms for extensive datasets. Results are encrypted and downloaded asynchronously for optimal performance.
Features:
- Large-scale data collection (1000-10000 results)
- Encrypted result delivery for security
- Asynchronous download processing
- Comprehensive filtering and search options
- Rate limited for optimal server performance
- Supports both raw parameters and Search instances
Parameters
params
Bulk search parameters including question or search instance, with comprehensive filtering options
Returns
Promise<ResultSet>
Promise resolving to a ResultSet containing bulk search results
Example
// Basic bulk search
const results = await client.bulkSearch({
question: 'all articles about artificial intelligence',
nResults: 5000
});
// Bulk search with comprehensive filtering
const filteredResults = await client.bulkSearch({
question: 'technology company funding rounds',
nResults: 10000,
algorithm: 'hybrid-3',
minSimilarity: 0.6,
continent: 'North America',
region: 'Silicon Valley',
mustInclude: ['venture capital', 'funding', 'investment'],
mustExclude: ['cryptocurrency', 'NFT'],
nProbes: 8,
nContextify: 512
});
// Bulk search using a Search instance
const search = new Search({
question: 'renewable energy developments',
nResults: 7500,
algorithm: 'hybrid-2'
});
const searchResults = await client.bulkSearch({ search });
// Process bulk results
console.log(`Retrieved ${results.length} results`);
const data = results.toJSON(); // Convert to JSON for analysis
scrapeUrl()
scrapeUrl(
url):Promise<WebPageData>
Defined in: src/client.ts:898
Scrapes and extracts structured content from a web URL.
This method fetches the content of a web page and extracts structured information including title, description, main content, metadata, and other relevant details. The scraping is optimized for clean content extraction and handles various website structures and formats.
Features:
- Clean content extraction from web pages
- Structured data including metadata and content
- Handles various website formats and structures
- Rate limited to respect website policies
- Returns WebPage object with enhanced functionality
Parameters
url
string
The URL to scrape and extract content from
Returns
Promise<WebPageData>
Promise resolving to a WebPage object containing structured content
Example
// Basic URL scraping
const webpage = await client.scrapeUrl('https://example.com/article');
// Access scraped content
console.log(`Title: ${webpage.title}`);
console.log(`Description: ${webpage.description}`);
console.log(`Author: ${webpage.author}`);
console.log(`Published: ${webpage.published}`);
console.log(`Content length: ${webpage.content.length} characters`);
// Extract specific content sections
const mainContent = webpage.content;
const bestChunk = webpage.bestChunk; // Most relevant content chunk
// Use in combination with search
const searchResults = await client.fastSearch({
question: 'artificial intelligence news',
nResults: 10
});
// Scrape the top result
if (searchResults.length > 0) {
const topArticle = await client.scrapeUrl(searchResults[0].url);
console.log(`Full article: ${topArticle.content}`);
}
topicTrend()
topicTrend(
query,sqlFilter?):Promise<TopicTrend>
Defined in: src/client.ts:966
Analyzes topic trends and popularity over time.
This method provides insights into how a topic's popularity and relevance changes over time. It's useful for market research, content strategy, trend analysis, and understanding topic momentum.
Features:
- Historical trend analysis for any topic
- Popularity metrics and temporal patterns
- Optional SQL filtering for refined analysis
- Returns TopicTrend object with analytical data
Parameters
query
string
The topic or query to analyze trends for
sqlFilter?
Optional SQL filter to refine the trend analysis
publishStart?
Date = ...
publishEnd?
Date = ...
visitedStart?
Date = ...
visitedEnd?
Date = ...
certain?
boolean = ...
includeNetlocs?
string[] = ...
excludeNetlocs?
string[] = ...
includeCompanies?
string[] = ...
excludeCompanies?
string[] = ...
includeDocs?
string[] = ...
excludeDocs?
string[] = ...
Returns
Promise<TopicTrend>
Promise resolving to a TopicTrend object containing trend analysis data
Example
// Basic trend analysis
const trends = await client.topicTrend('artificial intelligence');
// Access trend data
console.log(`Topic: ${trends.query}`);
console.log(`Data points: ${trends.data.length}`);
trends.data.forEach(point => {
console.log(`Date: ${point.date}, Popularity: ${point.popularity}`);
});
// Trend analysis with filtering
const filteredTrends = await client.topicTrend(
'machine learning',
'continent = "North America" AND published >= "2023-01-01"'
);
// Analyze multiple related topics
const topics = ['AI', 'machine learning', 'deep learning', 'neural networks'];
for (const topic of topics) {
const trend = await client.topicTrend(topic);
console.log(`${topic} trend analysis complete`);
}
// Use trend data for content strategy
const trendingTopics = ['blockchain', 'quantum computing', 'renewable energy'];
const trendAnalyses = await Promise.all(
trendingTopics.map(topic => client.topicTrend(topic))
);