API Reference

API Documentation

RESTful API with 10 endpoints. JSON responses. All endpoints accept POST with a JSON body containing a url field.

Get API Key Base: https://www.klazify.com/api

Authentication

Include your Bearer token in the Authorization header of every request.

Authorization: Bearer YOUR_API_KEY

API Parameters

Parameter Description
url or email [Required] The URL or email address to classify.
refresh [Optional] true or false. Forces Klazify to fetch live, fresh data directly from the website instead of returning cached results.
Default behavior (without refresh): Klazify returns the most recent cached version of the data. This is faster and does not consume extra processing time.
With refresh=true: Klazify visits the website in real-time, re-crawls it, and returns freshly generated data. Useful when a website has recently changed and you need updated classification.
Availability: Advanced, Plus, Business, Scale, and Premium plans (monthly and yearly).
Not supported on: /api/categorize (All Together) and /api/real_time_categorization (already live by default).
POST /api/categorize

All Together (Categorization)

Returns categories, logo, social media, company, and tech stack in a single call. Ideal for testing and getting a quick overview of all available data for any domain.

curl -X POST 'https://www.klazify.com/api/categorize' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"url": "https://cbsnews.com"}'
Response
{
  "domain": {
    "categories": [
      { "confidence": 0.97, "name": "/News" },
      { "confidence": 0.78, "name": "/Arts & Entertainment/TV & Video" }
    ],
    "domain_url": "https://cbsnews.com",
    "social_media": {
      "facebook_url": "https://facebook.com/CBSNews",
      "twitter_url": "https://twitter.com/CBSNews",
      "instagram_url": null,
      "youtube_url": "https://youtube.com/CBSNews"
    },
    "logo_url": "https://klazify.s3.amazonaws.com/..."
  },
  "success": true,
  "objects": {
    "company": {
      "name": "CBS News",
      "city": "New York",
      "stateCode": "NY",
      "countryCode": "US",
      "employeesRange": "1K-5K",
      "revenue": null,
      "raised": null,
      "tags": ["Publishing", "Broadcasting"],
      "tech": ["google_tag_manager", "salesforce"]
    }
  }
}

Response Properties

Property Description
domain.categories Array of category objects. Each contains confidence (decimal 0–1, where 1 = exact match) and name (Klazify category path, e.g. "/News"). Multiple categories may be returned, sorted by confidence descending.
domain.domain_url The normalized domain URL that was classified (e.g. https://cbsnews.com).
domain.logo_url Hosted URL of the domain's logo image (PNG/SVG). May be null or empty string if no logo was found.
domain.social_media Object containing social media profile URLs. Keys: facebook_url, twitter_url, instagram_url, youtube_url, linkedin_url, github_url, pinterest_url, medium_url. Each value is a full URL string or null if not found.
objects.company Company intelligence object. Contains name, city, stateCode, countryCode (ISO 3166-1 alpha-2), employeesRange (e.g. "1K-5K"), revenue, raised, and tags (industry labels). May be null if no company data is available.
objects.company.tech Array of technology identifier strings detected on the website (e.g. "google_tag_manager", "salesforce"). May be empty if no technologies were detected.
success true if the request succeeded, false if it failed (check message for details).
POST /api/real_time_categorization

Real-Time Classification

Classifies a URL in real-time using AI. Always fetches fresh content and classifies on the fly. Returns Klazify categories with confidence scores. The refresh parameter is not needed — every call is live.

curl -X POST 'https://www.klazify.com/api/real_time_categorization' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"url": "https://cbsnews.com"}'
Response
{
  "domain": {
    "categories": [
      { "confidence": 0.95, "name": "/News" },
      { "confidence": 0.72, "name": "/Arts & Entertainment/TV & Video" }
    ],
    "domain_url": "https://cbsnews.com",
    "updated_at": "2026-03-10T12:00:00Z"
  },
  "success": true
}

Response Properties

Property Description
domain.categories Array of category objects. Each contains confidence (decimal 0–1, where 1 = exact match) and name (Klazify category path). Results are freshly generated on every call — no cached data.
domain.domain_url The normalized domain URL that was classified.
domain.updated_at ISO 8601 timestamp (YYYY-MM-DDTHH:mm:ssZ) of when this classification was generated.
success true if the request succeeded, false if it failed (check message for details).
POST /api/domain_iab_categories

IAB Categories API

Returns IAB Content Taxonomy V1 and/or V3 categories for the domain. The global standard for contextual targeting, brand safety, and programmatic advertising.

refresh parameter: Supports refresh=true. Without it, returns cached IAB categories. With refresh=true, re-crawls the website and regenerates IAB V1/V3 mappings. Requires Advanced plan or above.

curl -X POST 'https://www.klazify.com/api/domain_iab_categories' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"url": "https://cbsnews.com"}'
Response
{
  "domain": {
    "IAB_categories": {
      "IAB12": "News",
      "IAB1": "Arts & Entertainment"
    },
    "domain_url": "https://cbsnews.com",
    "updated_at": "2026-03-10T12:00:00Z"
  },
  "success": true
}

Response Properties

Property Description
domain.IAB_categories Object mapping IAB taxonomy IDs to human-readable category names. Keys follow IAB format (e.g. "IAB12" for V1, "IAB-599" for V3). Values are the category label strings. May contain both V1 and V3 IDs when applicable.
domain.domain_url The normalized domain URL that was classified.
domain.updated_at ISO 8601 timestamp (YYYY-MM-DDTHH:mm:ssZ) of when this data was last generated or refreshed.
success true if the request succeeded, false if it failed (check message for details).
POST /api/domain_company

Company Data API

Returns company intelligence: name, headquarters, employee count, revenue, raised capital, industry tags, and technology stack.

refresh parameter: Supports refresh=true. Without it, returns cached company data. With refresh=true, fetches the latest company information from our data sources. Requires Advanced plan or above.

curl -X POST 'https://www.klazify.com/api/domain_company' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"url": "https://cbsnews.com"}'
Response
{
  "domain": { "domain_url": "https://cbsnews.com" },
  "success": true,
  "objects": {
    "company": {
      "name": "CBS News",
      "city": "New York",
      "stateCode": "NY",
      "countryCode": "US",
      "employeesRange": "1K-5K",
      "revenue": "$500M-$1B",
      "raised": "$50M",
      "tags": ["Publishing", "Broadcasting", "B2C"]
    }
  }
}

Response Properties

Property Description
objects.company.name String. Legal or commonly known company name.
objects.company.city String. City where the company is headquartered. May be null.
objects.company.stateCode String. State or province code (e.g. "NY", "CA"). May be null for non-US companies.
objects.company.countryCode String. Two-letter country code (ISO 3166-1 alpha-2, e.g. "US", "GB", "DE").
objects.company.employeesRange String. Estimated employee headcount range. Possible values: "1-10", "11-50", "51-200", "201-500", "501-1K", "1K-5K", "5K-10K", "10K+". May be null.
objects.company.revenue String. Estimated annual revenue range in USD (e.g. "$1M-$10M", "$500M-$1B", "$10B+"). May be null if not available.
objects.company.raised String. Total funding raised in USD (e.g. "$50M", "$1.2B"). May be null if the company has no known funding rounds or is publicly traded.
objects.company.tags Array of strings. Industry and business model labels (e.g. "SaaS", "B2B", "E-Commerce", "Publishing"). May be an empty array.
success true if the request succeeded, false if it failed (check message for details).
POST /api/domain_tech

Tech Stack API

Discovers the technology stack of any website. Detects CMS, analytics, CDN, frameworks, ad networks, and 150+ technologies.

refresh parameter: Supports refresh=true. Without it, returns cached tech stack. With refresh=true, re-scans the website to detect any newly added or removed technologies. Requires Advanced plan or above.

curl -X POST 'https://www.klazify.com/api/domain_tech' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"url": "https://cbsnews.com"}'
Response
{
  "domain": {
    "domain_url": "https://cbsnews.com",
    "updated_at": "2026-03-10T12:00:00Z"
  },
  "success": true,
  "objects": {
    "company": {
      "tech": [
        "google_tag_manager", "salesforce",
        "mongodb", "apache_http_server",
        "optimizely", "taboola_ads"
      ]
    }
  }
}

Response Properties

Property Description
objects.company.tech Array of lowercase, snake_case technology identifier strings detected on the website (e.g. "google_tag_manager", "wordpress", "react"). Covers categories like CMS, analytics, CDN, frameworks, ad networks, payment processors, and more. May be an empty array if no technologies were detected.
domain.domain_url The normalized domain URL that was scanned.
domain.updated_at ISO 8601 timestamp (YYYY-MM-DDTHH:mm:ssZ) of when the tech stack was last scanned.
success true if the request succeeded, false if it failed (check message for details).
POST /api/domain_expiration

Domain Expiration API

Returns domain registration data: domain age, creation date, expiration date, days remaining, and registrar information.

refresh parameter: Supports refresh=true. Without it, returns cached registration data. With refresh=true, performs a fresh WHOIS lookup to get the latest expiration and registrar data. Requires Advanced plan or above.

curl -X POST 'https://www.klazify.com/api/domain_expiration' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"url": "https://cbsnews.com"}'
Response
{
  "domain": { "domain_url": "https://cbsnews.com" },
  "success": true,
  "domain_registration_data": {
    "domain_age_date": "1994-10-04",
    "domain_age_days_ago": 11480,
    "domain_expiration_date": "2027-10-03",
    "domain_expiration_days_left": 572
  }
}

Response Properties

Property Description
domain_registration_data.domain_age_date String. Date when the domain was first registered, in YYYY-MM-DD format. Example: "1994-10-04" means registered on October 4, 1994.
domain_registration_data.domain_age_days_ago Integer. Number of days elapsed since the domain was first registered. Example: 11480 = ~31.4 years old.
domain_registration_data.domain_expiration_date String. Date when the domain registration expires, in YYYY-MM-DD format. Example: "2027-10-03".
domain_registration_data.domain_expiration_days_left Integer. Number of days remaining until the domain expires from today. Example: 572 = ~1.6 years. Useful for monitoring domain renewals or detecting expiring domains.
success true if the request succeeded, false if it failed (check message for details).
POST /api/domain_social_media

Social Media API

Scrapes social media profile links: Facebook, Twitter/X, Instagram, LinkedIn, YouTube, GitHub, Pinterest, Medium.

refresh parameter: Supports refresh=true. Without it, returns cached social links. With refresh=true, re-scrapes the website to find newly added or updated social media URLs. Requires Advanced plan or above.

curl -X POST 'https://www.klazify.com/api/domain_social_media' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"url": "https://cbsnews.com"}'
Response
{
  "domain": {
    "domain_url": "https://cbsnews.com",
    "social_media": {
      "facebook_url": "https://facebook.com/CBSNews",
      "twitter_url": "https://twitter.com/CBSNews",
      "instagram_url": "https://instagram.com/cbsnews",
      "youtube_url": "https://youtube.com/CBSNews",
      "linkedin_url": null,
      "github_url": null,
      "pinterest_url": null,
      "medium_url": null
    },
    "updated_at": "2026-03-10T12:00:00Z"
  },
  "success": true
}

Response Properties

Property Description
domain.social_media.facebook_url String or null. Full URL to the company's Facebook page.
domain.social_media.twitter_url String or null. Full URL to the company's Twitter/X profile.
domain.social_media.instagram_url String or null. Full URL to the company's Instagram profile.
domain.social_media.youtube_url String or null. Full URL to the company's YouTube channel.
domain.social_media.linkedin_url String or null. Full URL to the company's LinkedIn page.
domain.social_media.github_url String or null. Full URL to the company's GitHub organization or profile.
domain.social_media.pinterest_url String or null. Full URL to the company's Pinterest profile.
domain.social_media.medium_url String or null. Full URL to the company's Medium publication or profile.
domain.domain_url The normalized domain URL that was queried.
domain.updated_at ISO 8601 timestamp (YYYY-MM-DDTHH:mm:ssZ) of when the social media links were last scraped.
success true if the request succeeded, false if it failed (check message for details).
POST /api/similar_domain

Similar Domains API

Finds competitors and similar websites that share the same category and target market. Up to 10 related domains.

refresh parameter: Supports refresh=true. Without it, returns cached similar domains. With refresh=true, re-analyzes the website's category to generate an updated list of competitors. Requires Advanced plan or above.

curl -X POST 'https://www.klazify.com/api/similar_domain' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"url": "https://cbsnews.com"}'
Response
{
  "domain": {
    "domain_url": "https://cbsnews.com",
    "updated_at": "2026-03-10T12:00:00Z"
  },
  "success": true,
  "similar": [
    "washingtonpost.com",
    "nbcnews.com",
    "reuters.com",
    "foxnews.com",
    "cnn.com",
    "nytimes.com"
  ]
}

Response Properties

Property Description
similar Array of domain name strings (without protocol). Contains up to 10 competitor or related websites that share the same content category. Example: "washingtonpost.com". May be an empty array if no similar domains are found.
domain.domain_url The normalized domain URL that was queried.
domain.updated_at ISO 8601 timestamp (YYYY-MM-DDTHH:mm:ssZ) of when the similar domains list was last generated.
success true if the request succeeded, false if it failed (check message for details).
POST /api/domain_traffic_intelligence

Traffic Intelligence API

Traffic analytics: global rank, country rank, category rank, monthly visits, engagement metrics (bounce rate, pages/visit, time on site), traffic sources breakdown, and top countries by traffic share.

refresh parameter: Supports refresh=true. Without it, returns cached traffic data. With refresh=true, fetches the latest traffic metrics from our intelligence sources. Requires Advanced plan or above. Note: This entire endpoint is only available on Advanced plans and above.

curl -X POST 'https://www.klazify.com/api/domain_traffic_intelligence' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"url": "https://cbsnews.com"}'
Response
{
  "domain": { "domain_url": "https://cbsnews.com" },
  "success": true,
  "traffic_intelligence": {
    "global_rank": 765,
    "country_rank": {
      "country_code": "US",
      "rank": 196
    },
    "category_rank": {
      "category": "News_and_Media",
      "rank": "18"
    },
    "monthly_visits": {
      "2025-10": 71203841,
      "2025-11": 74521003,
      "2025-12": 78634549
    },
    "engagement": {
      "bounce_rate": "0.607",
      "pages_per_visit": "1.66",
      "time_on_site_seconds": "67.7"
    },
    "traffic_sources": {
      "direct": 0.554,
      "search": 0.358,
      "social": 0.034,
      "referrals": 0.051,
      "mail": 0.002,
      "paid": 0.001
    },
    "top_countries": [
      { "country_code": "US", "share": 0.72 },
      { "country_code": "GB", "share": 0.05 },
      { "country_code": "CA", "share": 0.04 }
    ]
  }
}

Response Properties

Property Description
traffic_intelligence.global_rank Integer. Global traffic rank position (1 = most trafficked website worldwide). Example: 765 means the 765th most visited website globally.
traffic_intelligence.country_rank Object with country_code (ISO 3166-1 alpha-2, e.g. "US") and rank (integer position within that country). Example: rank 196 in the US.
traffic_intelligence.category_rank Object with category (industry name, underscored) and rank (string, position within that category). Example: rank 18 in News_and_Media.
traffic_intelligence.monthly_visits Object keyed by period (YYYY-MM) with values as absolute visit counts (integers, not abbreviated). Example: 78634549 = 78.6 million visits. Typically returns 1–6 months of history.
traffic_intelligence.engagement.bounce_rate String (decimal 0–1). Proportion of single-page sessions. Example: "0.607" = 60.7% bounce rate.
traffic_intelligence.engagement.pages_per_visit String (decimal). Average number of pages viewed per session. Example: "1.66" = ~1.7 pages per visit.
traffic_intelligence.engagement.time_on_site_seconds String (decimal). Average session duration in seconds. Example: "67.7" = ~1 minute 8 seconds.
traffic_intelligence.traffic_sources Object with channel keys and decimal values (0–1) representing the share of total traffic from each source. Keys: direct, search, social, referrals, mail, paid. Example: 0.554 = 55.4% of traffic is direct. All values sum to ~1.0.
traffic_intelligence.top_countries Array of objects, each with country_code (ISO 3166-1 alpha-2) and share (decimal 0–1 representing % of total traffic from that country). Example: { "country_code": "US", "share": 0.72 } = 72% of traffic comes from the United States. Sorted by share descending.
success true if the request succeeded, false if it failed (check message for details).

About the Categorization

Klazify performs three types of categorizations for URLs or emails:

The IAB V1 and V3 categorizations may or may not be present, depending on whether the specific Klazify category aligns with an IAB category.

Composition of IAB V3

IAB V3 categorization is a more advanced set of categories that contextually describes the topic or “what the content is about.” Additionally, IAB V3 includes a series of vectors that cover aspects such as content language, format, source, media type, and more. All attributes are associated with identifiers (IDs) structured as:

IAB-Unique_Category_ID-Parent_Category_ID

Example for zylalabs.com:

  • IAB-599 (Technology & Computing) — The site is related to Technology & Computing.
  • IAB-602-599 (Software and Applications / Technology & Computing) — Tier 2 child of 599.

The first ID from left to right corresponds to the parent category (Tier 1), while the second corresponds to the child (Tier 2). Up to 4 tiers can exist. More details at IAB Tech Lab.

Confidence Score

A confidence score is a number between 0 and 1. A score of 1 is likely an exact match. The higher the score, the greater the confidence in the classification response.

Available Category Structures

A complete list of the 620+ content categories returned by the Klazify classification engine:

/Adult
/Arts & Entertainment
/Arts & Entertainment/Celebrities & Entertainment News
/Arts & Entertainment/Comics & Animation
/Arts & Entertainment/Comics & Animation/Anime & Manga
/Arts & Entertainment/Comics & Animation/Cartoons
/Arts & Entertainment/Comics & Animation/Comics
/Arts & Entertainment/Entertainment Industry
/Arts & Entertainment/Entertainment Industry/Film & TV Industry
/Arts & Entertainment/Entertainment Industry/Recording Industry
/Arts & Entertainment/Events & Listings
/Arts & Entertainment/Events & Listings/Bars, Clubs & Nightlife
/Arts & Entertainment/Events & Listings/Concerts & Music Festivals
/Arts & Entertainment/Events & Listings/Expos & Conventions
/Arts & Entertainment/Events & Listings/Film Festivals
/Arts & Entertainment/Events & Listings/Movie Listings & Theater Showtimes
/Arts & Entertainment/Fun & Trivia
/Arts & Entertainment/Fun & Trivia/Flash-Based Entertainment
/Arts & Entertainment/Fun & Trivia/Fun Tests & Silly Surveys
/Arts & Entertainment/Humor
/Arts & Entertainment/Humor/Funny Pictures & Videos
/Arts & Entertainment/Humor/Political Humor
/Arts & Entertainment/Movies
/Arts & Entertainment/Music & Audio
/Arts & Entertainment/Music & Audio/CD & Audio Shopping
/Arts & Entertainment/Music & Audio/Classical Music
/Arts & Entertainment/Music & Audio/Country Music
/Arts & Entertainment/Music & Audio/Dance & Electronic Music
/Arts & Entertainment/Music & Audio/Experimental & Industrial Music
/Arts & Entertainment/Music & Audio/Jazz & Blues
/Arts & Entertainment/Music & Audio/Music Education & Instruction
/Arts & Entertainment/Music & Audio/Music Equipment & Technology
/Arts & Entertainment/Music & Audio/Music Reference
/Arts & Entertainment/Music & Audio/Music Streams & Downloads
/Arts & Entertainment/Music & Audio/Music Videos
/Arts & Entertainment/Music & Audio/Pop Music
/Arts & Entertainment/Music & Audio/Radio
/Arts & Entertainment/Music & Audio/Religious Music
/Arts & Entertainment/Music & Audio/Rock Music
/Arts & Entertainment/Music & Audio/Soundtracks
/Arts & Entertainment/Music & Audio/Urban & Hip-Hop
/Arts & Entertainment/Music & Audio/World Music
/Arts & Entertainment/Offbeat
/Arts & Entertainment/Offbeat/Occult & Paranormal
/Arts & Entertainment/Online Media
/Arts & Entertainment/Online Media/Online Image Galleries
/Arts & Entertainment/Performing Arts
/Arts & Entertainment/Performing Arts/Acting & Theater
/Arts & Entertainment/Performing Arts/Circus
/Arts & Entertainment/Performing Arts/Dance
/Arts & Entertainment/Performing Arts/Magic
/Arts & Entertainment/Performing Arts/Opera
/Arts & Entertainment/TV & Video
/Arts & Entertainment/TV & Video/Online Video
/Arts & Entertainment/TV & Video/TV Commercials
/Arts & Entertainment/TV & Video/TV Shows & Programs
/Arts & Entertainment/Visual Art & Design
/Arts & Entertainment/Visual Art & Design/Architecture
/Arts & Entertainment/Visual Art & Design/Art Museums & Galleries
/Arts & Entertainment/Visual Art & Design/Design
/Arts & Entertainment/Visual Art & Design/Painting
/Arts & Entertainment/Visual Art & Design/Photographic & Digital Arts
/Autos & Vehicles
/Autos & Vehicles/Bicycles & Accessories
/Autos & Vehicles/Bicycles & Accessories/Bike Parts & Repair
/Autos & Vehicles/Bicycles & Accessories/BMX Bikes
/Autos & Vehicles/Boats & Watercraft
/Autos & Vehicles/Campers & RVs
/Autos & Vehicles/Classic Vehicles
/Autos & Vehicles/Commercial Vehicles/Cargo Trucks & Trailers
/Autos & Vehicles/Motor Vehicles (By Type)
/Autos & Vehicles/Motor Vehicles (By Type)/Hybrid & Alternative Vehicles
/Autos & Vehicles/Motor Vehicles (By Type)/Motorcycles
/Autos & Vehicles/Motor Vehicles (By Type)/Off-Road Vehicles
/Autos & Vehicles/Motor Vehicles (By Type)/Trucks & SUVs
/Autos & Vehicles/Vehicle Codes & Driving Laws
/Autos & Vehicles/Vehicle Codes & Driving Laws/Vehicle Licensing & Registration
/Autos & Vehicles/Vehicle Parts & Services
/Autos & Vehicles/Vehicle Parts & Services/Gas Prices & Vehicle Fueling
/Autos & Vehicles/Vehicle Parts & Services/Vehicle Parts & Accessories
/Autos & Vehicles/Vehicle Parts & Services/Vehicle Repair & Maintenance
/Autos & Vehicles/Vehicle Shopping
/Autos & Vehicles/Vehicle Shopping/Used Vehicles
/Autos & Vehicles/Vehicle Shows
/Beauty & Fitness
/Beauty & Fitness/Beauty Pageants
/Beauty & Fitness/Body Art
/Beauty & Fitness/Cosmetic Procedures
/Beauty & Fitness/Cosmetic Procedures/Cosmetic Surgery
/Beauty & Fitness/Cosmetology & Beauty Professionals
/Beauty & Fitness/Face & Body Care
/Beauty & Fitness/Face & Body Care/Hygiene & Toiletries
/Beauty & Fitness/Face & Body Care/Make-Up & Cosmetics
/Beauty & Fitness/Face & Body Care/Perfumes & Fragrances
/Beauty & Fitness/Face & Body Care/Skin & Nail Care
/Beauty & Fitness/Face & Body Care/Unwanted Body & Facial Hair Removal
/Beauty & Fitness/Fashion & Style
/Beauty & Fitness/Fashion & Style/Fashion Designers & Collections
/Beauty & Fitness/Fitness
/Beauty & Fitness/Hair Care
/Beauty & Fitness/Hair Care/Hair Loss
/Beauty & Fitness/Spas & Beauty Services
/Beauty & Fitness/Spas & Beauty Services/Massage Therapy
/Beauty & Fitness/Weight Loss
/Books & Literature
/Books & Literature/Children's Literature
/Books & Literature/E-Books
/Books & Literature/Fan Fiction
/Books & Literature/Literary Classics
/Books & Literature/Poetry
/Books & Literature/Writers Resources
/Business & Industrial
/Business & Industrial/Advertising & Marketing/Public Relations
/Business & Industrial/Aerospace & Defense/Space Technology
/Business & Industrial/Agriculture & Forestry
/Business & Industrial/Agriculture & Forestry/Agricultural Equipment
/Business & Industrial/Agriculture & Forestry/Forestry
/Business & Industrial/Agriculture & Forestry/Livestock
/Business & Industrial/Automotive Industry
/Business & Industrial/Business Education
/Business & Industrial/Business Finance
/Business & Industrial/Business Finance/Venture Capital
/Business & Industrial/Business Operations
/Business & Industrial/Business Operations/Business Plans & Presentations
/Business & Industrial/Business Operations/Management
/Business & Industrial/Business Services
/Business & Industrial/Business Services/Consulting
/Business & Industrial/Business Services/Corporate Events
/Business & Industrial/Business Services/E-Commerce Services
/Business & Industrial/Business Services/Fire & Security Services
/Business & Industrial/Business Services/Office Services
/Business & Industrial/Business Services/Office Supplies
/Business & Industrial/Business Services/Writing & Editing Services
/Business & Industrial/Chemicals Industry
/Business & Industrial/Chemicals Industry/Cleaning Agents
/Business & Industrial/Chemicals Industry/Plastics & Polymers
/Business & Industrial/Construction & Maintenance
/Business & Industrial/Construction & Maintenance/Building Materials & Supplies
/Business & Industrial/Energy & Utilities
/Business & Industrial/Energy & Utilities/Electricity
/Business & Industrial/Energy & Utilities/Oil & Gas
/Business & Industrial/Energy & Utilities/Renewable & Alternative Energy
/Business & Industrial/Hospitality Industry
/Business & Industrial/Hospitality Industry/Event Planning
/Business & Industrial/Hospitality Industry/Food Service
/Business & Industrial/Industrial Materials & Equipment
/Business & Industrial/Industrial Materials & Equipment/Heavy Machinery
/Business & Industrial/Manufacturing
/Business & Industrial/Metals & Mining
/Business & Industrial/Metals & Mining/Precious Metals
/Business & Industrial/Pharmaceuticals & Biotech
/Business & Industrial/Printing & Publishing
/Business & Industrial/Retail Trade
/Business & Industrial/Retail Trade/Retail Equipment & Technology
/Business & Industrial/Small Business/MLM & Business Opportunities
/Business & Industrial/Textiles & Nonwovens
/Business & Industrial/Transportation & Logistics
/Business & Industrial/Transportation & Logistics/Freight & Trucking
/Business & Industrial/Transportation & Logistics/Mail & Package Delivery
/Business & Industrial/Transportation & Logistics/Maritime Transport
/Business & Industrial/Transportation & Logistics/Moving & Relocation
/Business & Industrial/Transportation & Logistics/Packaging
/Business & Industrial/Transportation & Logistics/Parking
/Business & Industrial/Transportation & Logistics/Rail Transport
/Business & Industrial/Transportation & Logistics/Urban Transport
/Computers & Electronics
/Computers & Electronics/CAD & CAM
/Computers & Electronics/Computer Hardware
/Computers & Electronics/Computer Hardware/Computer Components
/Computers & Electronics/Computer Hardware/Computer Drives & Storage
/Computers & Electronics/Computer Hardware/Computer Peripherals
/Computers & Electronics/Computer Hardware/Desktop Computers
/Computers & Electronics/Computer Hardware/Laptops & Notebooks
/Computers & Electronics/Computer Security
/Computers & Electronics/Computer Security/Hacking & Cracking
/Computers & Electronics/Consumer Electronics
/Computers & Electronics/Consumer Electronics/Audio Equipment
/Computers & Electronics/Consumer Electronics/Camera & Photo Equipment
/Computers & Electronics/Consumer Electronics/Car Electronics
/Computers & Electronics/Consumer Electronics/Drones & RC Aircraft
/Computers & Electronics/Consumer Electronics/Game Systems & Consoles
/Computers & Electronics/Consumer Electronics/GPS & Navigation
/Computers & Electronics/Consumer Electronics/TV & Video Equipment
/Computers & Electronics/Electronics & Electrical
/Computers & Electronics/Electronics & Electrical/Electronic Components
/Computers & Electronics/Electronics & Electrical/Power Supplies
/Computers & Electronics/Enterprise Technology
/Computers & Electronics/Enterprise Technology/Data Management
/Computers & Electronics/Networking
/Computers & Electronics/Networking/Data Formats & Protocols
/Computers & Electronics/Networking/Network Monitoring & Management
/Computers & Electronics/Networking/VPN & Remote Access
/Computers & Electronics/Programming
/Computers & Electronics/Programming/Java (Programming Language)
/Computers & Electronics/Software
/Computers & Electronics/Software/Business & Productivity Software
/Computers & Electronics/Software/Device Drivers
/Computers & Electronics/Software/Internet Software
/Computers & Electronics/Software/Multimedia Software
/Computers & Electronics/Software/Operating Systems
/Computers & Electronics/Software/Software Utilities
/Finance
/Finance/Accounting & Auditing
/Finance/Accounting & Auditing/Billing & Invoicing
/Finance/Accounting & Auditing/Tax Preparation & Planning
/Finance/Banking
/Finance/Credit & Lending
/Finance/Credit & Lending/Credit Cards
/Finance/Credit & Lending/Credit Reporting & Monitoring
/Finance/Credit & Lending/Loans
/Finance/Financial Planning & Management
/Finance/Financial Planning & Management/Retirement & Pension
/Finance/Grants, Scholarships & Financial Aid
/Finance/Grants, Scholarships & Financial Aid/Study Grants & Scholarships
/Finance/Insurance
/Finance/Insurance/Health Insurance
/Finance/Investing
/Finance/Investing/Commodities & Futures Trading
/Finance/Investing/Currencies & Foreign Exchange
/Finance/Investing/Stocks & Bonds
/Food & Drink
/Food & Drink/Beverages
/Food & Drink/Beverages/Alcoholic Beverages
/Food & Drink/Beverages/Coffee & Tea
/Food & Drink/Beverages/Juice
/Food & Drink/Beverages/Soft Drinks
/Food & Drink/Cooking & Recipes
/Food & Drink/Cooking & Recipes/BBQ & Grilling
/Food & Drink/Cooking & Recipes/Desserts
/Food & Drink/Cooking & Recipes/Soups & Stews
/Food & Drink/Food
/Food & Drink/Food & Grocery Retailers
/Food & Drink/Food/Baked Goods
/Food & Drink/Food/Breakfast Foods
/Food & Drink/Food/Candy & Sweets
/Food & Drink/Food/Grains & Pasta
/Food & Drink/Food/Meat & Seafood
/Food & Drink/Food/Snack Foods
/Food & Drink/Restaurants
/Food & Drink/Restaurants/Fast Food
/Food & Drink/Restaurants/Pizzerias
/Food & Drink/Restaurants/Restaurant Reviews & Reservations
/Games
/Games/Arcade & Coin-Op Games
/Games/Board Games
/Games/Board Games/Chess & Abstract Strategy Games
/Games/Board Games/Miniatures & Wargaming
/Games/Card Games
/Games/Card Games/Collectible Card Games
/Games/Card Games/Poker & Casino Games
/Games/Computer & Video Games
/Games/Computer & Video Games/Casual Games
/Games/Computer & Video Games/Driving & Racing Games
/Games/Computer & Video Games/Fighting Games
/Games/Computer & Video Games/Music & Dance Games
/Games/Computer & Video Games/Sandbox Games
/Games/Computer & Video Games/Shooter Games
/Games/Computer & Video Games/Simulation Games
/Games/Computer & Video Games/Sports Games
/Games/Computer & Video Games/Strategy Games
/Games/Computer & Video Games/Video Game Emulation
/Games/Family-Oriented Games & Activities
/Games/Family-Oriented Games & Activities/Drawing & Coloring
/Games/Family-Oriented Games & Activities/Dress-Up & Fashion Games
/Games/Gambling
/Games/Gambling/Lottery
/Games/Online Games/Massively Multiplayer Games
/Games/Puzzles & Brainteasers
/Games/Roleplaying Games
/Games/Table Games
/Games/Table Games/Billiards
/Games/Word Games
/Health
/Health/Aging & Geriatrics
/Health/Health Conditions
/Health/Health Conditions/AIDS & HIV
/Health/Health Conditions/Allergies
/Health/Health Conditions/Arthritis
/Health/Health Conditions/Cancer
/Health/Health Conditions/Diabetes
/Health/Health Conditions/Ear Nose & Throat
/Health/Health Conditions/Eating Disorders
/Health/Health Conditions/Endocrine Conditions
/Health/Health Conditions/Genetic Disorders
/Health/Health Conditions/Heart & Hypertension
/Health/Health Conditions/Infectious Diseases
/Health/Health Conditions/Neurological Conditions
/Health/Health Conditions/Obesity
/Health/Health Conditions/Pain Management
/Health/Health Conditions/Respiratory Conditions
/Health/Health Conditions/Skin Conditions
/Health/Health Conditions/Sleep Disorders
/Health/Health Education & Medical Training
/Health/Health Foundations & Medical Research
/Health/Medical Devices & Equipment
/Health/Medical Facilities & Services
/Health/Medical Facilities & Services/Doctors' Offices
/Health/Medical Facilities & Services/Hospitals & Treatment Centers
/Health/Medical Facilities & Services/Medical Procedures
/Health/Medical Facilities & Services/Physical Therapy
/Health/Men's Health
/Health/Mental Health
/Health/Mental Health/Anxiety & Stress
/Health/Mental Health/Depression
/Health/Nursing
/Health/Nursing/Assisted Living & Long Term Care
/Health/Nutrition
/Health/Nutrition/Special & Restricted Diets
/Health/Nutrition/Vitamins & Supplements
/Health/Oral & Dental Care
/Health/Pharmacy
/Health/Pharmacy/Drugs & Medications
/Health/Public Health
/Health/Public Health/Occupational Health & Safety
/Health/Reproductive Health
/Health/Substance Abuse
/Health/Substance Abuse/Drug & Alcohol Testing
/Health/Substance Abuse/Drug & Alcohol Treatment
/Health/Substance Abuse/Smoking & Smoking Cessation
/Health/Substance Abuse/Steroids & Performance-Enhancing Drugs
/Health/Vision Care
/Health/Vision Care/Eyeglasses & Contacts
/Health/Women's Health
/Hobbies & Leisure
/Hobbies & Leisure/Clubs & Organizations
/Hobbies & Leisure/Clubs & Organizations/Youth Organizations & Resources
/Hobbies & Leisure/Crafts
/Hobbies & Leisure/Crafts/Fiber & Textile Arts
/Hobbies & Leisure/Merit Prizes & Contests
/Hobbies & Leisure/Outdoors
/Hobbies & Leisure/Outdoors/Fishing
/Hobbies & Leisure/Outdoors/Hiking & Camping
/Hobbies & Leisure/Paintball
/Hobbies & Leisure/Radio Control & Modeling
/Hobbies & Leisure/Radio Control & Modeling/Model Trains & Railroads
/Hobbies & Leisure/Special Occasions
/Hobbies & Leisure/Special Occasions/Holidays & Seasonal Events
/Hobbies & Leisure/Special Occasions/Weddings
/Hobbies & Leisure/Water Activities
/Hobbies & Leisure/Water Activities/Boating
/Hobbies & Leisure/Water Activities/Surf & Swim
/Home & Garden
/Home & Garden/Bed & Bath
/Home & Garden/Bed & Bath/Bathroom
/Home & Garden/Domestic Services
/Home & Garden/Domestic Services/Cleaning Services
/Home & Garden/Gardening & Landscaping
/Home & Garden/Home & Interior Decor
/Home & Garden/Home Appliances
/Home & Garden/Home Furnishings
/Home & Garden/Home Furnishings/Curtains & Window Treatments
/Home & Garden/Home Furnishings/Kitchen & Dining Furniture
/Home & Garden/Home Furnishings/Lamps & Lighting
/Home & Garden/Home Furnishings/Living Room Furniture
/Home & Garden/Home Furnishings/Rugs & Carpets
/Home & Garden/Home Improvement
/Home & Garden/Home Improvement/Construction & Power Tools
/Home & Garden/Home Improvement/Doors & Windows
/Home & Garden/Home Improvement/Flooring
/Home & Garden/Home Improvement/House Painting & Finishing
/Home & Garden/Home Improvement/Plumbing
/Home & Garden/Home Safety & Security
/Home & Garden/Home Storage & Shelving
/Home & Garden/Home Swimming Pools, Saunas & Spas
/Home & Garden/HVAC & Climate Control
/Home & Garden/HVAC & Climate Control/Fireplaces & Stoves
/Home & Garden/Kitchen & Dining
/Home & Garden/Kitchen & Dining/Cookware & Diningware
/Home & Garden/Kitchen & Dining/Major Kitchen Appliances
/Home & Garden/Kitchen & Dining/Small Kitchen Appliances
/Home & Garden/Laundry
/Home & Garden/Laundry/Washers & Dryers
/Home & Garden/Nursery & Playroom
/Home & Garden/Pest Control
/Home & Garden/Yard & Patio
/Home & Garden/Yard & Patio/Lawn Mowers
/Internet & Telecom
/Internet & Telecom/Communications Equipment
/Internet & Telecom/Communications Equipment/Radio Equipment
/Internet & Telecom/Email & Messaging
/Internet & Telecom/Email & Messaging/Text & Instant Messaging
/Internet & Telecom/Email & Messaging/Voice & Video Chat
/Internet & Telecom/Mobile & Wireless
/Internet & Telecom/Mobile & Wireless/Mobile & Wireless Accessories
/Internet & Telecom/Mobile & Wireless/Mobile Apps & Add-Ons
/Internet & Telecom/Mobile & Wireless/Mobile Phones
/Internet & Telecom/Service Providers
/Internet & Telecom/Service Providers/Cable & Satellite Providers
/Internet & Telecom/Web Services
/Internet & Telecom/Web Services/Domain Parking
/Internet & Telecom/Web Services/Affiliate Programs
/Internet & Telecom/Web Services/Web Design & Development
/Jobs & Education
/Jobs & Education/Education
/Jobs & Education/Education/Colleges & Universities
/Jobs & Education/Education/Distance Learning
/Jobs & Education/Education/Homeschooling
/Jobs & Education/Education/Primary & Secondary Schooling (K-12)
/Jobs & Education/Education/Standardized & Admissions Tests
/Jobs & Education/Education/Teaching & Classroom Resources
/Jobs & Education/Education/Training & Certification
/Jobs & Education/Education/Vocational & Continuing Education
/Jobs & Education/Jobs
/Jobs & Education/Jobs/Career Resources & Planning
/Jobs & Education/Jobs/Job Listings
/Jobs & Education/Jobs/Resumes & Portfolios
/Law & Government
/Law & Government/Government
/Law & Government/Government/Courts & Judiciary
/Law & Government/Government/Visa & Immigration
/Law & Government/Legal
/Law & Government/Legal/Bankruptcy
/Law & Government/Legal/Legal Education
/Law & Government/Legal/Legal Services
/Law & Government/Military
/Law & Government/Public Safety
/Law & Government/Public Safety/Crime & Justice
/Law & Government/Public Safety/Emergency Services
/Law & Government/Public Safety/Law Enforcement
/Law & Government/Public Safety/Security Products & Services
/Law & Government/Social Services
/News
/News/Business News
/News/Business News/Company News
/News/Business News/Financial Markets News
/News/Gossip & Tabloid News/Scandals & Investigations
/News/Health News
/News/Politics
/News/Sports News
/News/Weather
/Online Communities
/Online Communities/Blogging Resources & Services
/Online Communities/Dating & Personals
/Online Communities/Dating & Personals/Matrimonial Services
/Online Communities/Dating & Personals/Personals
/Online Communities/Dating & Personals/Photo Rating Sites
/Online Communities/File Sharing & Hosting
/Online Communities/Online Goodies
/Online Communities/Online Goodies/Clip Art & Animated GIFs
/Online Communities/Online Goodies/Skins, Themes & Wallpapers
/Online Communities/Online Goodies/Social Network Apps & Add-Ons
/Online Communities/Photo & Video Sharing
/Online Communities/Photo & Video Sharing/Photo & Image Sharing
/Online Communities/Social Networks
/Online Communities/Virtual Worlds
/People & Society
/People & Society/Family & Relationships
/People & Society/Family & Relationships/Family
/People & Society/Family & Relationships/Marriage
/People & Society/Family & Relationships/Troubled Relationships
/People & Society/Kids & Teens
/People & Society/Kids & Teens/Children's Interests
/People & Society/Kids & Teens/Teen Interests
/People & Society/Religion & Belief
/People & Society/Seniors & Retirement
/People & Society/Social Issues & Advocacy
/People & Society/Social Issues & Advocacy/Charity & Philanthropy
/People & Society/Social Issues & Advocacy/Discrimination & Identity Relations
/People & Society/Social Issues & Advocacy/Green Living & Environmental Issues
/People & Society/Social Issues & Advocacy/Human Rights & Liberties
/People & Society/Social Issues & Advocacy/Poverty & Hunger
/People & Society/Social Issues & Advocacy/Work & Labor Issues
/People & Society/Social Sciences
/People & Society/Social Sciences/Economics
/People & Society/Social Sciences/Political Science
/People & Society/Social Sciences/Psychology
/People & Society/Subcultures & Niche Interests
/Pets & Animals
/Pets & Animals/Animal Products & Services/Pet Food & Supplies
/Pets & Animals/Animal Products & Services/Veterinarians
/Pets & Animals/Pets
/Pets & Animals/Pets/Birds
/Pets & Animals/Pets/Cats
/Pets & Animals/Pets/Dogs
/Pets & Animals/Pets/Exotic Pets
/Pets & Animals/Pets/Fish & Aquaria
/Pets & Animals/Pets/Horses
/Pets & Animals/Pets/Rabbits & Rodents
/Pets & Animals/Pets/Reptiles & Amphibians
/Pets & Animals/Wildlife
/Real Estate
/Real Estate/Real Estate Listings
/Real Estate/Real Estate Listings/Bank-Owned & Foreclosed Properties
/Real Estate/Real Estate Listings/Commercial Properties
/Real Estate/Real Estate Listings/Lots & Land
/Real Estate/Real Estate Listings/Residential Rentals
/Real Estate/Real Estate Listings/Residential Sales
/Real Estate/Real Estate Listings/Timeshares & Vacation Properties
/Real Estate/Real Estate Services
/Reference
/Reference/Directories & Listings
/Reference/Directories & Listings/Business & Personal Listings
/Reference/General Reference
/Reference/General Reference/Biographies & Quotations
/Reference/General Reference/Calculators & Reference Tools
/Reference/General Reference/Dictionaries & Encyclopedias
/Reference/General Reference/Forms Guides & Templates
/Reference/General Reference/Public Records
/Reference/General Reference/Time & Calendars
/Reference/Geographic Reference
/Reference/Geographic Reference/Maps
/Reference/Humanities
/Reference/Humanities/History
/Reference/Humanities/Myth & Folklore
/Reference/Humanities/Philosophy
/Reference/Language Resources
/Reference/Language Resources/Foreign Language Resources
/Reference/Libraries & Museums
/Reference/Libraries & Museums/Museums
/Science
/Science/Astronomy
/Science/Biological Sciences
/Science/Biological Sciences/Neuroscience
/Science/Chemistry
/Science/Computer Science
/Science/Earth Sciences
/Science/Earth Sciences/Atmospheric Science
/Science/Earth Sciences/Geology
/Science/Ecology & Environment
/Science/Ecology & Environment/Climate Change & Global Warming
/Science/Engineering & Technology
/Science/Engineering & Technology/Robotics
/Science/Mathematics
/Science/Mathematics/Statistics
/Science/Physics
/Science/Scientific Institutions
/Sensitive Subjects
/Shopping
/Shopping/Antiques & Collectibles
/Shopping/Apparel
/Shopping/Apparel/Athletic Apparel
/Shopping/Apparel/Casual Apparel
/Shopping/Apparel/Children's Clothing
/Shopping/Apparel/Clothing Accessories
/Shopping/Apparel/Costumes
/Shopping/Apparel/Eyewear
/Shopping/Apparel/Footwear
/Shopping/Apparel/Formal Wear
/Shopping/Apparel/Headwear
/Shopping/Apparel/Men's Clothing
/Shopping/Apparel/Swimwear
/Shopping/Apparel/Undergarments
/Shopping/Apparel/Women's Clothing
/Shopping/Auctions
/Shopping/Classifieds
/Shopping/Consumer Resources
/Shopping/Consumer Resources/Consumer Advocacy & Protection
/Shopping/Consumer Resources/Coupons & Discount Offers
/Shopping/Consumer Resources/Product Reviews & Price Comparisons
/Shopping/Entertainment Media
/Shopping/Entertainment Media/Entertainment Media Rentals
/Shopping/Gifts & Special Event Items
/Shopping/Gifts & Special Event Items/Cards & Greetings
/Shopping/Gifts & Special Event Items/Flowers
/Shopping/Gifts & Special Event Items/Gifts
/Shopping/Luxury Goods
/Shopping/Mass Merchants & Department Stores
/Shopping/Photo & Video Services
/Shopping/Tobacco Products
/Shopping/Toys
/Shopping/Toys/Building Toys
/Shopping/Toys/Die-cast & Toy Vehicles
/Shopping/Toys/Dolls & Accessories
/Shopping/Toys/Ride-On Toys & Wagons
/Shopping/Toys/Stuffed Toys
/Sports
/Sports/Animal Sports
/Sports/College Sports
/Sports/Combat Sports
/Sports/Combat Sports/Boxing
/Sports/Combat Sports/Martial Arts
/Sports/Combat Sports/Wrestling
/Sports/Extreme Sports
/Sports/Extreme Sports/Drag & Street Racing
/Sports/Fantasy Sports
/Sports/Individual Sports
/Sports/Individual Sports/Cycling
/Sports/Individual Sports/Golf
/Sports/Individual Sports/Gymnastics
/Sports/Individual Sports/Racquet Sports
/Sports/Individual Sports/Skate Sports
/Sports/Individual Sports/Track & Field
/Sports/International Sports Competitions
/Sports/International Sports Competitions/Olympics
/Sports/Motor Sports
/Sports/Sporting Goods
/Sports/Sporting Goods/Sports Memorabilia
/Sports/Sporting Goods/Winter Sports Equipment
/Sports/Sports Coaching & Training
/Sports/Team Sports
/Sports/Team Sports/American Football
/Sports/Team Sports/Australian Football
/Sports/Team Sports/Baseball
/Sports/Team Sports/Basketball
/Sports/Team Sports/Cheerleading
/Sports/Team Sports/Cricket
/Sports/Team Sports/Hockey
/Sports/Team Sports/Rugby
/Sports/Team Sports/Soccer
/Sports/Team Sports/Volleyball
/Sports/Water Sports
/Sports/Water Sports/Surfing
/Sports/Water Sports/Swimming
/Sports/Winter Sports
/Sports/Winter Sports/Ice Skating
/Sports/Winter Sports/Skiing & Snowboarding
/Travel
/Travel/Air Travel
/Travel/Air Travel/Airport Parking & Transportation
/Travel/Bus & Rail
/Travel/Car Rental & Taxi Services
/Travel/Cruises & Charters
/Travel/Hotels & Accommodations
/Travel/Hotels & Accommodations/Vacation Rentals & Short-Term Stays
/Travel/Specialty Travel
/Travel/Tourist Destinations
/Travel/Tourist Destinations/Beaches & Islands
/Travel/Tourist Destinations/Mountain & Ski Resorts
/Travel/Tourist Destinations/Regional Parks & Gardens
/Travel/Tourist Destinations/Theme Parks
/Travel/Tourist Destinations/Zoos-Aquariums-Preserves

Error Categories

Our system identifies specific errors encountered during processing and categorizes them for easier diagnosis:

/Unreachable

The URL provided cannot be accessed. May be due to the website being down, network issues, or incorrect URL entry. Verify that the URL is correct and the website is operational.

/No indexable content

The URL does not contain content that can be utilized by our classification algorithm. May occur when the webpage is empty, consists of non-text elements only, or is blocked from indexing.

Billing Note Regarding Errors

We do not bill for any API calls that result in errors categorized under “Unreachable” or “No Indexable Content.” You are only billed for successful API calls. If your API request encounters either of these errors, it will not count towards your usage quota or incur any charges.

Ready to integrate?

Get your API key in seconds. 7-day free trial on the Starter plan.

Create Free Account