Application Object

The Application (application ) object provides the ID, tag, description, and logos for applications tracked in the Netify Data feed.

For the IP API, the application_list includes a list of applications associated with the IP. The application is also provided in all the Netify datasets.

If you're curious, some of the Netify Data Feed data originates directly from the real-time Netify DPI engine. We regularly add new applications and update existing classifications as our detection capabilities evolve. For the latest additions and changes, see the changelog.

Application Object - Visualized
ID
156
Tag
spotify
Label
Spotify
Category
Streaming Media
Logo
Spotify Icon Spotify

Application Logos

Three types of logos are available in the data payload. The favicon and icon can vary in size, but these images will render well at the sizes described below. The logo , if available, is strictly 128x128.

Favicon
A logo that renders well at 16x16
Icon
A logo that renders well at 128x128
Logo
A logo that is exactly 128x128 (if available)

Not all applications have all of the logos available. By default, the API response will provide a placeholder logo showing the first letter of the app, e.g., .

In the data payload, you can check the values for favicon_source , icon_source , and logo_source to verify the source of the images. If the source is set to app , the actual application logo is available. If the source is set to default , the placeholder image is provided.


Application Attributes

id

integer
The ID number associated with the application.

tag

string
The tag associated with the application. You can browse the list of tags on the applications web tool or, you can fetch the list by querying the API.

label

string
The name an end user would typically use to identify the application.

full_label

string
The full_label (if shown) provides a more formal name. For example, BBC is the label, but British Broadcasting Corporation is the full_label.

description

string
A one or two-sentence description of the application.

home_page

object
A small object that defines both the url and associated text for the application home page.

category

object
A small object that defines the id, tag and label for the application category. You can find a list of application categories and associated IDs/tags here.

active

boolean
A flag indicating whether the application is still active.

favicon

string
URL for the application favicon.

icon

string
URL for the application icon.

logo

string
URL for the application logo.

favicon_source

string
Source of the favicon, either app or default.

icon_source

string
Source of the icon, either app or default.

logo_source

string
Source of the logo, either app or default.

Application Object - JSON Example

"application": {
    "id": 142,
    "tag": "whatsapp",
    "label": "WhatsApp",
    "full_label": "WhatsApp Messenger",
    "description": "WhatsApp allows users...",
    "home_page": {
      "url": "https://www.whatsapp.com",
      "text": "WhatsApp"
    },
    "category": {
      "id": 17,
      "tag": "messaging",
      "label": "Messaging"
    },
    "active": true,
    "favicon": "https://static.netify.ai...",
    "icon": "https://static.netify.ai...",
    "logo": "https://static.netify.ai...",
    "favicon_source": "app",
    "icon_source": "app",
    "logo_source": "app"
}