Skip to main content

Result

Nosible API Client


Nosible API Client / Result

Class: Result

Defined in: src/search/result.ts:40

Represents a single search result from the Nosible search API.

This class encapsulates all the data and functionality associated with a search result, including metadata, content, semantic information, and methods for further operations like sentiment analysis, finding similar results, and URL scraping.

Example

const result = new Result({
client: nosibleClient,
result: apiResponseData
});

// Get sentiment analysis
const sentiment = await result.getSentiment();

// Find similar results
const similarResults = await result.getSimilar({ limit: 5 });

Constructors

Constructor

new Result(params): Result

Defined in: src/search/result.ts:174

Creates a new Result instance from raw API response data

Parameters

params

ResultParams

The result parameters containing client and raw data

Returns

Result

Properties

url_hash

url_hash: string

Defined in: src/search/result.ts:45

Unique hash identifier for the URL


url

url: string

Defined in: src/search/result.ts:50

The full URL of the web page


netloc

netloc: string

Defined in: src/search/result.ts:55

Network location (domain) of the URL


published

published: string

Defined in: src/search/result.ts:60

Publication date of the content (ISO 8601 format)


visited

visited: string

Defined in: src/search/result.ts:65

Date when the page was last visited/crawled (ISO 8601 format)


language

language: string

Defined in: src/search/result.ts:70

Language code of the content (e.g., 'en', 'es', 'fr')


author

author: string

Defined in: src/search/result.ts:75

Author of the content, if available


title

title: string

Defined in: src/search/result.ts:80

Title of the web page


description

description: string

Defined in: src/search/result.ts:85

Meta description or summary of the content


content

content: string

Defined in: src/search/result.ts:90

Full text content of the web page


best_chunk

best_chunk: string

Defined in: src/search/result.ts:95

The most relevant content chunk for the search query


semantics

semantics: object

Defined in: src/search/result.ts:100

Semantic search metadata including similarity scores and chunk information

origin_shard

origin_shard: number

chunks_total

chunks_total: number

chunks_matched

chunks_matched: number

chunks_kept

chunks_kept: number

similarity

similarity: number

bitstring

bitstring: string


brand_safety

brand_safety: string | null

Defined in: src/search/result.ts:106

Brand safety classification


continent

continent: string | null

Defined in: src/search/result.ts:111

Continent classification


region

region: string | null

Defined in: src/search/result.ts:116

Geographic region classification


country

country: string | null

Defined in: src/search/result.ts:121

Country classification (ISO 3166-1 alpha-2 code)


sector

sector: string | null

Defined in: src/search/result.ts:126

Economic sector classification


industry_group

industry_group: string | null

Defined in: src/search/result.ts:131

Industry group classification


industry

industry: string | null

Defined in: src/search/result.ts:136

Industry classification


sub_industry

sub_industry: string | null

Defined in: src/search/result.ts:141

Sub-industry classification


iab_tier_1

iab_tier_1: string | null

Defined in: src/search/result.ts:147

IAB Tier 1 content category


iab_tier_2

iab_tier_2: string | null

Defined in: src/search/result.ts:152

IAB Tier 2 content category


iab_tier_3

iab_tier_3: string | null

Defined in: src/search/result.ts:157

IAB Tier 3 content category


iab_tier_4

iab_tier_4: string | null

Defined in: src/search/result.ts:162

IAB Tier 4 content category


client

client: NosibleClient

Defined in: src/search/result.ts:167

The Nosible client instance used for API operations

Methods

fromFlatten()

static fromFlatten(client, flatten): Result

Defined in: src/search/result.ts:190

Creates a Result instance from a flattened result structure

This method reconstructs the nested semantics object from flattened properties and creates a new Result instance.

Parameters

client

NosibleClient

The Nosible client instance

flatten

FlattenResult

The flattened result data

Returns

Result

A new Result instance


getSentiment()

getSentiment(model?): Promise<number>

Defined in: src/search/result.ts:228

Analyzes the sentiment of the result content using an LLM

This method requires the Nosible client to be configured with an OpenRouter API key. The sentiment analysis returns a numerical score (typically ranging from -1 to 1) where negative values indicate negative sentiment and positive values indicate positive sentiment.

Parameters

model?

string

Optional model name for sentiment analysis (uses default if not specified)

Returns

Promise<number>

A promise that resolves to the sentiment score

Throws

Error if the client is not configured with an OpenRouter API key

Example

const sentiment = await result.getSentiment('gpt-4');
console.log(`Sentiment score: ${sentiment}`);

getSimilar()

getSimilar(params): Promise<ResultSet>

Defined in: src/search/result.ts:264

Finds search results similar to this one based on content and metadata

This method performs a new search using the title of this result as the query, excluding the current result from the returned results. It's useful for discovering related content or alternative sources on the same topic.

Parameters

params

Search parameters for finding similar results

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>

A promise that resolves to a ResultSet containing similar results

Example

// Find 5 similar results
const similar = await result.getSimilar({ limit: 5 });

// Find similar results with specific filters
const filteredSimilar = await result.getSimilar({
limit: 10,
country: 'US',
language: 'en'
});

scrapeUrl()

scrapeUrl(): Promise<WebPageData>

Defined in: src/search/result.ts:290

Scrapes the full web page content from the result's URL

This method uses the client's scraping functionality to retrieve the complete web page content, which may include additional information not present in the search result snippet.

Returns

Promise<WebPageData>

A promise that resolves to WebPageData containing the scraped content

Example

const pageData = await result.scrapeUrl();
console.log('Full page title:', pageData.title);
console.log('Full page content:', pageData.text);

flatten()

flatten(): FlattenResult

Defined in: src/search/result.ts:310

Converts the Result to a flattened structure

This method transforms the nested Result object into a flat structure where semantic properties are top-level fields. This is useful for serialization, storage, or when working with systems that prefer flat data structures.

Returns

FlattenResult

A FlattenResult object with all properties flattened to top level

Example

const flattened = result.flatten();
console.log('Similarity score:', flattened.similarity);
console.log('Chunks matched:', flattened.chunks_matched);

data()

data(): object

Defined in: src/search/result.ts:362

Returns a plain object representation of the Result data

This method provides a clean object with all the result properties, maintaining the nested structure for semantic data. It's useful for serialization, logging, or when you need to work with the raw data without the class methods.

Returns

object

A plain object containing all result properties

url_hash

url_hash: string

url

url: string

netloc

netloc: string

published

published: string

visited

visited: string

language

language: string

author

author: string

title

title: string

description

description: string

content

content: string

best_chunk

best_chunk: string

brand_safety

brand_safety: string | null

continent

continent: string | null

region

region: string | null

country

country: string | null

sector

sector: string | null

industry_group

industry_group: string | null

industry

industry: string | null

sub_industry

sub_industry: string | null

iab_tier_1

iab_tier_1: string | null

iab_tier_2

iab_tier_2: string | null

iab_tier_3

iab_tier_3: string | null

iab_tier_4

iab_tier_4: string | null

semantics

semantics: object

semantics.origin_shard

origin_shard: number

semantics.chunks_total

chunks_total: number

semantics.chunks_matched

chunks_matched: number

semantics.chunks_kept

chunks_kept: number

semantics.similarity

similarity: number

semantics.bitstring

bitstring: string

Example

const rawData = result.data();
console.log('Result metadata:', rawData.semantics);

// Serialize to JSON
const json = JSON.stringify(rawData, null, 2);