Network Object

The Network (network ) object provides the ID, tag, description, and logos for networks tracked in the Netify Data feed.

Network Object - Visualized
ID
206
Tag
cloudflare
Label
Cloudflare
Category
CDN
Logo
Cloudflare Icon Cloudflare

Network 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.

Network Attributes

id

integer
An official ID number associated with the network.

tag

string
An official tag associated with the network.

label

string
This is the name an end user would typically use to identify the network.

full_label

string
The full_label (if shown) provides a more formal name.

description

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

is_bogon

boolean
The is_bogon attribute will be set to true if a network is a reserved special-purpose network.

favicon

string
URL for the network favicon.

icon

string
URL for the network icon.

logo

string
URL for the network 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.

Network Object - Example JSON

"network": {
   "id": 206,
   "tag": "cloudflare",
   "label": "Cloudflare",
   "description": "Cloudflare is ...",
   "home_page": {
      "url": "https://www.cloudflare.com",
      "text": "Cloudflare"
   },
   "category": {
      "id": 35,
      "tag": "cdn",
      "label": "CDN"
   },
   "favicon": "https://static.netify.ai/logos...",
   "icon": "https://static.netify.ai/logos...",
   "logo": "https://static.netify.ai/logos...",
   "favicon_source": "app",
   "icon_source": "app",
   "logo_source": "app"
}

Network Object - Bogon JSON

"network": {
   "id": 11866,
   "tag": "private-network",
   "label": "Private Network",
   "description": "Used for internal...",
   "home_page": {
      "url": "https://www.iana.org/go/rfc1918",
      "text": "Private Network"
   },
   "category": {
      "id": 27,
      "tag": "technology",
      "label": "Technology"
   },
   "favicon": "https://static.netify.ai/logos...",
   "icon": "https://static.netify.ai/logos...",
   "logo": "https://static.netify.ai/logos...",
   "favicon_source": "app",
   "icon_source": "app",
   "logo_source": "app",
   "is_bogon": true
}