Entity Object
The Entity (entity ) object provides normalized organization metadata, including a unique ID, tag, description, and associated logos. We use this object to represent organizations behind ASNs, Mobile Gateways, and MAC address prefixes (OUIs), creating a consistent identity layer across datasets and APIs.
For example, if an IP address belongs to ASN AS210492 - Nintendo European Research and Development - the IP API returns the corresponding Nintendo entity object.
- ID
- 10046
- Tag
- nintendo
- Label
- Nintendo
- Category
- Games
- Home Page
- Nintendo - Home Page
- Logo
-
Nintendo
Entity 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.
Entity Attributes
id
integertag
stringlabel
stringfull_label
stringdescription
stringhome_page
objectcategory
objectfavicon
stringicon
stringlogo
stringfavicon_source
stringicon_source
stringlogo_source
stringEntity Object - JSON Example
"entity": {
"id": 10046,
"tag": "nintendo",
"label": "Nintendo",
"description": "Nintendo is the home ...",
"home_page": {
"url": "https://www.nintendo.com",
"text": "Nintendo"
},
"category": {
"id": 12,
"tag": "games",
"label": "Games"
},
"favicon": "https://static.netify.ai...",
"icon": "https://static.netify.ai...",
"logo": "https://static.netify.ai...",
"favicon_source": "app",
"icon_source": "app",
"logo_source": "app"
}