klazify


Nameklazify JSON
Version 0.4 PyPI version JSON
download
home_pagehttps://github.com/Zyla-Labs/pypi-klazify-api
SummaryThe most accurate Content Classification API. All-in-one domain data source
upload_time2024-05-16 18:41:43
maintainerNone
docs_urlNone
authorKlazify
requires_pythonNone
licenseNone
keywords get website logos api brand imagery api we categorize the web api for website api key for website logo api banking logo api company logo api api key website api of website best api for website create an api for a website create an api for your website website category api website logo api logo api url logo api webshrinker classifies a site into a category brandfetch url categorization url category check api website category lookup web categories url classification dataset
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # [![Klazify](https://www.klazify.com/img/new_klazify_logo.png)](https://klazify.com)

**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](https://www.klazify.com/category#docs).

Begin leveraging Klazify today to classify any domain or email! Visit [Klazify.com](https://klazify.com) and seamlessly integrate within minutes!

## Installation

You can install Klazify Python SDK with pip.

```bash
pip install klazify
```

## Usage

The Klazify Python SDK is a wrapper around the [requests](https://docs.python-requests.org/en/master/) library. Klazify supports a GET request for now.

Sign-up to Klazify to [get your API key](https://www.klazify.com/register) and some credits to get started.

### Making the GET request

```python
>>> from klazify_api import KlazifyApiClient

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

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

### Request Example

```python
>>> from klazify_api import KlazifyApiClient

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

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

### Response Example

```json
{
    "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

```python
>>> 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)
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Zyla-Labs/pypi-klazify-api",
    "name": "klazify",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "Get Website Logos api, Brand Imagery api, We Categorize the Web, api for website, api key for website, logo api, banking logo api, company logo api, api key website, api of website, best api for website, create an api for a website, create an api for your website, Website Category API, Website Logo API, logo api, URL logo api, Webshrinker, classifies a site into a category, brandfetch, url categorization, url category check api, website category lookup, web categories, url classification dataset",
    "author": "Klazify",
    "author_email": "hello@klazify.com",
    "download_url": "https://files.pythonhosted.org/packages/d2/e5/de5161ad26e32c3d2dce4aa05a4808c834d347577bd0275998fed2d6794b/klazify-0.4.tar.gz",
    "platform": null,
    "description": "# [![Klazify](https://www.klazify.com/img/new_klazify_logo.png)](https://klazify.com)\r\n\r\n**Klazify** - The most accurate Content Classification API.\r\nAll-in-one domain data source. Get Website Logos, Company Data, Categorization and much more from a URL or Email.\r\n\r\n## Key Features:\r\n\r\n- AI Powered Real-Time Categorization.\r\n- IAB Categorization.\r\n- Full Path URL support\r\n- Batch Enrichement importing a .CSV.\r\n- Extract Logo from any URL\r\n- Social Media Links Scraper API.\r\n- Multi-site license. \r\n- Service-level agreement (SLA).\r\n\r\n## Endpoints availables\r\n\r\nThe 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.\r\n\r\n1. **Categorization API**\r\n   - Retrieve the IAB and Klazify category for a specified domain.\r\n\r\n2. **Logo API**\r\n   - Obtain the logo URL associated with a given domain.\r\n\r\n3. **Company API**\r\n   - Provides comprehensive details regarding the categorization of a given domain, with a focus on information related to the identified company and its attributes.\r\n   \r\n4. **Website Tech Stack API**\r\n   - Returns the technological stack utilized by the requested website.\r\n\r\n5. **IAB Categories API**\r\n   - Retrieves the IAB category and its confidence level (ranging from 0 to 1).\r\n\r\n6. **Competitors API**\r\n   - Retrieves competitor domains.\r\n    \r\n7. **Similar Companies API**\r\n   - Identifies companies similar to the specified domain.\r\n\r\n8. **Parked Domain API**\r\n   - Based on the content of a website, indicates whether a domain is parked or not.\r\n     \r\n9. **Social Media Links API**\r\n   - Retrieves the social media links associated with a given domain.\r\n\r\n## Documentation\r\n\r\nFor comprehensive details regarding API endpoints, usage, and integration guidelines, please refer to our [API Documentation](https://www.klazify.com/category#docs).\r\n\r\nBegin leveraging Klazify today to classify any domain or email! Visit [Klazify.com](https://klazify.com) and seamlessly integrate within minutes!\r\n\r\n## Installation\r\n\r\nYou can install Klazify Python SDK with pip.\r\n\r\n```bash\r\npip install klazify\r\n```\r\n\r\n## Usage\r\n\r\nThe Klazify Python SDK is a wrapper around the [requests](https://docs.python-requests.org/en/master/) library. Klazify supports a GET request for now.\r\n\r\nSign-up to Klazify to [get your API key](https://www.klazify.com/register) and some credits to get started.\r\n\r\n### Making the GET request\r\n\r\n```python\r\n>>> from klazify_api import KlazifyApiClient\r\n\r\n>>> client = KlazifyApiClient(access_key='REPLACE-WITH-YOUR-ACCESS-KEY')\r\n\r\n>>> response = client.categorize_url(\"URL\")\r\n```\r\n\r\n### Request Example\r\n\r\n```python\r\n>>> from klazify_api import KlazifyApiClient\r\n\r\n>>> client = KlazifyApiClient(access_key='REPLACE-WITH-YOUR-ACCESS-KEY')\r\n\r\n>>> response = client.categorize_url(\"http://razer.com\")\r\n```\r\n\r\n### Response Example\r\n\r\n```json\r\n{\r\n    \"domain\": {\r\n        \"categories\": [\r\n            {\r\n                \"confidence\": 0.62,\r\n                \"name\": \"/Games/Computer & Video Games\"\r\n            },\r\n            {\r\n                \"confidence\": 0.52,\r\n                \"name\": \"/Computers & Electronics/Consumer Electronics\"\r\n            }\r\n        ],\r\n        \"domain_url\": \"https://www.razer.com/\",\r\n        \"social_media\": {\r\n            \"facebook_url\": \"https://www.facebook.com/razer\",\r\n            \"twitter_url\": \"https://www.twitter.com/Razer\",\r\n            \"instagram_url\": \"https://www.instagram.com/razer\",\r\n            \"medium_url\": null,\r\n            \"youtube_url\": null,\r\n            \"pinterest_url\": null,\r\n            \"linkedin_url\": null,\r\n            \"github_url\": null\r\n        },\r\n        \"logo_url\": \"https://klazify.s3.amazonaws.com/1470029904162279565560b9e587db3951.79673890.png\"\r\n    },\r\n    \"success\": true,\r\n    \"objects\": {\r\n        \"company\": {\r\n            \"name\": \"Razer\",\r\n            \"city\": \"Irvine\",\r\n            \"stateCode\": \"CA\",\r\n            \"countryCode\": \"US\",\r\n            \"employeesRange\": \"1K-5K\",\r\n            \"revenue\": 1620000000,\r\n            \"raised\": 110000,\r\n            \"tags\": [\r\n                \"Information Technology & Services\",\r\n                \"Consumer Electronics\",\r\n                \"Electronics\",\r\n                \"Computers\",\r\n                \"E-commerce\",\r\n                \"Manufacturing\",\r\n                \"Software\",\r\n                \"Publishers\",\r\n                \"Information\",\r\n                \"Publishing\",\r\n                \"Technology\",\r\n                \"Computer Hardware\",\r\n                \"B2C\",\r\n                \"SAAS\",\r\n                \"Mobile\"\r\n            ],\r\n            \"tech\": [\r\n                \"outlook\",\r\n                \"microsoft_exchange_online\",\r\n                \"sendgrid\",\r\n                \"amazon_ses\",\r\n                \"salesforce\",\r\n                \"microsoft_office_365\",\r\n                \"zendesk\",\r\n                \"cloud_flare\",\r\n                \"db2\",\r\n                \"oracle_crm\",\r\n                \"smartsheet\",\r\n                \"sybase\",\r\n                \"apache_kafka\",\r\n                \"apache_http_server\",\r\n                \"sap_hybris_marketing\",\r\n                \"couchbase\",\r\n                \"dropbox\",\r\n                \"woo_commerce\",\r\n                \"flexera_software\",\r\n                \"oracle_data_integrator\",\r\n                \"ibm_websphere\",\r\n                \"sap_concur\",\r\n                \"rabbitmq\",\r\n                \"cision\",\r\n                \"cloudera\",\r\n                \"apache_hadoop\",\r\n                \"aws_dynamodb\",\r\n                \"oracle_weblogic\",\r\n                \"aws_cloudwatch\",\r\n                \"atlassian_confluence\",\r\n                \"sap_crystal_reports\",\r\n                \"oracle_peoplesoft\",\r\n                \"apache_tomcat\",\r\n                \"basecamp\",\r\n                \"informatica\",\r\n                \"the_trade_desk\",\r\n                \"mongodb\",\r\n                \"microsoft_project\",\r\n                \"ibm_cognos\",\r\n                \"pubmatic\",\r\n                \"workday\",\r\n                \"peoplesoft_crm\",\r\n                \"pentaho\",\r\n                \"sap_sales_order_management\",\r\n                \"aws_kinesis\",\r\n                \"apache_spark\",\r\n                \"sprinklr\",\r\n                \"qlikview\",\r\n                \"microsoft_dynamics\",\r\n                \"aws_redshift\",\r\n                \"oracle_commerce_cloud\",\r\n                \"teradata\",\r\n                \"aws_lambda\",\r\n                \"google_search_appliance\",\r\n                \"apache_storm\",\r\n                \"pivotal_tracker\",\r\n                \"github\",\r\n                \"sap_business_objects\",\r\n                \"sap_hana\",\r\n                \"quickbooks\",\r\n                \"netsuite\",\r\n                \"postgresql\",\r\n                \"mysql\",\r\n                \"windows_server\",\r\n                \"worldpay\",\r\n                \"servicenow\",\r\n                \"microsoft_power_bi\",\r\n                \"sap_crm\",\r\n                \"atlassian_jira\",\r\n                \"facebook_workplace\",\r\n                \"neo4j\",\r\n                \"hive\",\r\n                \"filemaker_pro\",\r\n                \"apache_cassandra\",\r\n                \"vmware_server\"\r\n            ]\r\n        }\r\n    },\r\n    \"similar_domains\": [\r\n        \"logitechg.com\",\r\n        \"xbox.com\",\r\n        \"gog.com\",\r\n        \"secretlab.co\",\r\n        \"pcgamer.com\",\r\n        \"mechanicalkeyboards.com\",\r\n        \"hyperxgaming.com\",\r\n        \"kinguin.net\",\r\n        \"scufgaming.com\",\r\n        \"cdkeys.com\"\r\n    ],\r\n    \"api_usage\": {\r\n        \"this_month_api_calls\": 679,\r\n        \"remaining_api_calls\": 1321\r\n    }\r\n}\r\n```\r\n\r\n### AVAILABLE METHODS\r\n\r\n```python\r\n>>> categorize_url(url: str)\r\n>>> real_time_categorization(url: str)\r\n>>> domain_logo(url: str)\r\n>>> domain_company(url: str)\r\n>>> domain_tech(url: str)\r\n>>> domain_iab_categories(url: str)\r\n>>> similar_domain(url: str)\r\n>>> domain_expiration(url: str)\r\n>>> domain_social_media(url: str)\r\n```\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "The most accurate Content Classification API. All-in-one domain data source",
    "version": "0.4",
    "project_urls": {
        "Homepage": "https://github.com/Zyla-Labs/pypi-klazify-api"
    },
    "split_keywords": [
        "get website logos api",
        " brand imagery api",
        " we categorize the web",
        " api for website",
        " api key for website",
        " logo api",
        " banking logo api",
        " company logo api",
        " api key website",
        " api of website",
        " best api for website",
        " create an api for a website",
        " create an api for your website",
        " website category api",
        " website logo api",
        " logo api",
        " url logo api",
        " webshrinker",
        " classifies a site into a category",
        " brandfetch",
        " url categorization",
        " url category check api",
        " website category lookup",
        " web categories",
        " url classification dataset"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2533eb051e981891dea7966626c3f0fe9e4b7e94a1b3d533f231d459e7b66a42",
                "md5": "e53c5955e66db0487216399e004a1bdc",
                "sha256": "1ce96784733b78d5c10f4c90cbd759636632406fc380dd3600b488a1a99a6060"
            },
            "downloads": -1,
            "filename": "klazify-0.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e53c5955e66db0487216399e004a1bdc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 4562,
            "upload_time": "2024-05-16T18:41:41",
            "upload_time_iso_8601": "2024-05-16T18:41:41.881099Z",
            "url": "https://files.pythonhosted.org/packages/25/33/eb051e981891dea7966626c3f0fe9e4b7e94a1b3d533f231d459e7b66a42/klazify-0.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2e5de5161ad26e32c3d2dce4aa05a4808c834d347577bd0275998fed2d6794b",
                "md5": "093e8ab3c92001bc384a481ee292378c",
                "sha256": "c15faf07de8ceb35cc742ddaee5cefa5ea62e414a82bcba9342b0a820b6f59aa"
            },
            "downloads": -1,
            "filename": "klazify-0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "093e8ab3c92001bc384a481ee292378c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 4562,
            "upload_time": "2024-05-16T18:41:43",
            "upload_time_iso_8601": "2024-05-16T18:41:43.101891Z",
            "url": "https://files.pythonhosted.org/packages/d2/e5/de5161ad26e32c3d2dce4aa05a4808c834d347577bd0275998fed2d6794b/klazify-0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-16 18:41:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Zyla-Labs",
    "github_project": "pypi-klazify-api",
    "github_not_found": true,
    "lcname": "klazify"
}
        
Elapsed time: 0.63615s