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.
- ID
- 156
- Tag
- spotify
- Label
- Spotify
- Category
- Streaming Media
- Home Page
- Spotify - Home Page
- Logo
-
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
integertag
stringlabel
stringfull_label
stringdescription
stringhome_page
objectcategory
objectactive
booleanfavicon
stringicon
stringlogo
stringfavicon_source
stringicon_source
stringlogo_source
stringApplication 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"
}