Application Domains Datasets

The Netify Application Domains dataset provides network intelligence data that is typically used for:

  • DNS filtering
  • Application detection
  • Hostname-based machine learning models
Learn About It
Dataset overview
Update Frequency
Several times a week

Legacy Dataset

If you subscribed to the Application Domains dataset prior to October 2024, you can access the legacy dataset here.

Downloads

You can find links to information on authentication, response codes, and other developer topics in the menu. An API key or token from a subscription is required to access the links below.

All Applications
GET
https://feeds.netify.ai/datasets/v2/application_domains/application_domains.json.gz
Compressed file with application domains.
Status
GET
https://feeds.netify.ai/datasets/v2/application_domains/status.txt
File containing last update timestamp.

Payload Overview

The application_domains.json.gz dataset provides a list of thousands of applications with their associated domains. The dataset includes:

  • Application information and logos
  • Application category
  • Platform information and logos
  • Platform category

Every item in the application_domain_list starts with our standard application object. This provides the application name, description, logo, and other details. The domain_list provides a list of domain objects (described in the next section) associated with the application.

Application Domain List - Overview

"application_domain_list": [
    {
        "application": { Application Attributes },
        "domain_list": [
            { Domain Object },
            { Domain Object },
            ...
        ],
    },
...

Domain Attributes

In the adjacent JSON example, the edgesuite.net suffix in the Netflix domain (netflix.com.edgesuite.net) is part of Akamai's content delivery network. For this reason, the platform details for Akamai are provided.

id

integer
A unique domain ID.

label

string
The domain, e.g. netflix.com

category

object
Domains share the same category as the application, so it is not explicitly shown in the domain object. You can find a list of domain categories and associated IDs / tags here.

platform

object - Application Object (similar)
if a domain is associated with a platform, the details are provided in the platform object. The attributes are identical to the application object.

Application Domain Object - JSON Example

{
    "application": {
        "id": 133,
        "tag": "netflix",
        "label": "Netflix",
        "description": "Netflix is ...",
        "home_page": {
            "url": "https://www.netflix.com",
            "text": "Netflix"
        },
        "category": {
            "id": 29,
            "tag": "streaming-media",
            "label": "Streaming Media"
        },
        "favicon": "https://static.netify.ai/...",
        "icon": "https://static.netify.ai/...",
        "logo": "https://static.netify.ai/...",
        "favicon_source": "app",
        "icon_source": "app",
        "logo_source": "app"
    },
    "domain_list": [
        {
            "id": 2739815,
            "label": "netflix.ca"
        },
        {
            "id": 1710630,
            "label": "netflix.com"
        },
        {
            "id": 2738882,
            "label": "netflix.com.edgesuite.net",
            "platform": {
                "id": 10011,
                "tag": "akamai",
                "label": "Akamai",
                "description": "Akamai is ...",
                "home_page": {
                    "url": "https://www.akamai.com",
                    "text": "Akamai"
                },
                "category": {
                    "id": 35,
                    "tag": "cdn",
                    "label": "CDN"
                }
                "favicon": "https://static.netify.ai/...",
                "icon": "https://static.netify.ai/...",
                "logo": "https://static.netify.ai/...",
                "favicon_source": "app",
                "icon_source": "app",
                "logo_source": "app"
            }
        }
    ]
}