Skip to main content

The most accurate Content Classification API. All-in-one domain data source

Project description

Klazify

Klazify - The most accurate Content Classification API. All-in-one domain data source. Get Website Logos, Company Data, Categorization and much more from a URL or Email.

Key Features:

  • AI Powered Real-Time Categorization.
  • IAB Categorization.
  • Full Path URL support
  • Batch Enrichement importing a .CSV.
  • Extract Logo from any URL
  • Social Media Links Scraper API.
  • Multi-site license.
  • Service-level agreement (SLA).

Endpoints availables

The Klazify API comes with multiple endpoints, each providing different functionality. Please note that depending on your subscription plan, certain API endpoints may or may not be available.

  1. Categorization API

    • Retrieve the IAB and Klazify category for a specified domain.
  2. Logo API

    • Obtain the logo URL associated with a given domain.
  3. Company API

    • Provides comprehensive details regarding the categorization of a given domain, with a focus on information related to the identified company and its attributes.
  4. Website Tech Stack API

    • Returns the technological stack utilized by the requested website.
  5. IAB Categories API

    • Retrieves the IAB category and its confidence level (ranging from 0 to 1).
  6. Competitors API

    • Retrieves competitor domains.
  7. Similar Companies API

    • Identifies companies similar to the specified domain.
  8. Parked Domain API

    • Based on the content of a website, indicates whether a domain is parked or not.
  9. Social Media Links API

    • Retrieves the social media links associated with a given domain.

Documentation

For comprehensive details regarding API endpoints, usage, and integration guidelines, please refer to our API Documentation.

Begin leveraging Klazify today to classify any domain or email! Visit Klazify.com and seamlessly integrate within minutes!

Installation

You can install Klazify Python SDK with pip.

pip install klazify

Usage

The Klazify Python SDK is a wrapper around the requests library. Klazify supports a GET request for now.

Sign-up to Klazify to get your API key and some credits to get started.

Making the GET request

>>> from klazify_api import KlazifyApiClient

>>> client = KlazifyApiClient(access_key='REPLACE-WITH-YOUR-ACCESS-KEY')

>>> response = client.categorize_url("URL")

Request Example

>>> from klazify_api import KlazifyApiClient

>>> client = KlazifyApiClient(access_key='REPLACE-WITH-YOUR-ACCESS-KEY')

>>> response = client.categorize_url("http://razer.com")

Response Example

{
    "domain": {
        "categories": [
            {
                "confidence": 0.62,
                "name": "/Games/Computer & Video Games"
            },
            {
                "confidence": 0.52,
                "name": "/Computers & Electronics/Consumer Electronics"
            }
        ],
        "domain_url": "https://www.razer.com/",
        "social_media": {
            "facebook_url": "https://www.facebook.com/razer",
            "twitter_url": "https://www.twitter.com/Razer",
            "instagram_url": "https://www.instagram.com/razer",
            "medium_url": null,
            "youtube_url": null,
            "pinterest_url": null,
            "linkedin_url": null,
            "github_url": null
        },
        "logo_url": "https://klazify.s3.amazonaws.com/1470029904162279565560b9e587db3951.79673890.png"
    },
    "success": true,
    "objects": {
        "company": {
            "name": "Razer",
            "city": "Irvine",
            "stateCode": "CA",
            "countryCode": "US",
            "employeesRange": "1K-5K",
            "revenue": 1620000000,
            "raised": 110000,
            "tags": [
                "Information Technology & Services",
                "Consumer Electronics",
                "Electronics",
                "Computers",
                "E-commerce",
                "Manufacturing",
                "Software",
                "Publishers",
                "Information",
                "Publishing",
                "Technology",
                "Computer Hardware",
                "B2C",
                "SAAS",
                "Mobile"
            ],
            "tech": [
                "outlook",
                "microsoft_exchange_online",
                "sendgrid",
                "amazon_ses",
                "salesforce",
                "microsoft_office_365",
                "zendesk",
                "cloud_flare",
                "db2",
                "oracle_crm",
                "smartsheet",
                "sybase",
                "apache_kafka",
                "apache_http_server",
                "sap_hybris_marketing",
                "couchbase",
                "dropbox",
                "woo_commerce",
                "flexera_software",
                "oracle_data_integrator",
                "ibm_websphere",
                "sap_concur",
                "rabbitmq",
                "cision",
                "cloudera",
                "apache_hadoop",
                "aws_dynamodb",
                "oracle_weblogic",
                "aws_cloudwatch",
                "atlassian_confluence",
                "sap_crystal_reports",
                "oracle_peoplesoft",
                "apache_tomcat",
                "basecamp",
                "informatica",
                "the_trade_desk",
                "mongodb",
                "microsoft_project",
                "ibm_cognos",
                "pubmatic",
                "workday",
                "peoplesoft_crm",
                "pentaho",
                "sap_sales_order_management",
                "aws_kinesis",
                "apache_spark",
                "sprinklr",
                "qlikview",
                "microsoft_dynamics",
                "aws_redshift",
                "oracle_commerce_cloud",
                "teradata",
                "aws_lambda",
                "google_search_appliance",
                "apache_storm",
                "pivotal_tracker",
                "github",
                "sap_business_objects",
                "sap_hana",
                "quickbooks",
                "netsuite",
                "postgresql",
                "mysql",
                "windows_server",
                "worldpay",
                "servicenow",
                "microsoft_power_bi",
                "sap_crm",
                "atlassian_jira",
                "facebook_workplace",
                "neo4j",
                "hive",
                "filemaker_pro",
                "apache_cassandra",
                "vmware_server"
            ]
        }
    },
    "similar_domains": [
        "logitechg.com",
        "xbox.com",
        "gog.com",
        "secretlab.co",
        "pcgamer.com",
        "mechanicalkeyboards.com",
        "hyperxgaming.com",
        "kinguin.net",
        "scufgaming.com",
        "cdkeys.com"
    ],
    "api_usage": {
        "this_month_api_calls": 679,
        "remaining_api_calls": 1321
    }
}

AVAILABLE METHODS

>>> categorize_url(url: str)
>>> real_time_categorization(url: str)
>>> domain_logo(url: str)
>>> domain_company(url: str)
>>> domain_tech(url: str)
>>> domain_iab_categories(url: str)
>>> similar_domain(url: str)
>>> domain_expiration(url: str)
>>> domain_social_media(url: str)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

klazify-0.4.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

klazify-0.4-py3-none-any.whl (4.6 kB view details)

Uploaded Python 3

File details

Details for the file klazify-0.4.tar.gz.

File metadata

  • Download URL: klazify-0.4.tar.gz
  • Upload date:
  • Size: 4.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for klazify-0.4.tar.gz
Algorithm Hash digest
SHA256 c15faf07de8ceb35cc742ddaee5cefa5ea62e414a82bcba9342b0a820b6f59aa
MD5 093e8ab3c92001bc384a481ee292378c
BLAKE2b-256 d2e5de5161ad26e32c3d2dce4aa05a4808c834d347577bd0275998fed2d6794b

See more details on using hashes here.

File details

Details for the file klazify-0.4-py3-none-any.whl.

File metadata

  • Download URL: klazify-0.4-py3-none-any.whl
  • Upload date:
  • Size: 4.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for klazify-0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 1ce96784733b78d5c10f4c90cbd759636632406fc380dd3600b488a1a99a6060
MD5 e53c5955e66db0487216399e004a1bdc
BLAKE2b-256 2533eb051e981891dea7966626c3f0fe9e4b7e94a1b3d533f231d459e7b66a42

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page