TLS Certificate Object

The TLS Certificate (tls_certificate ) object is provided for IP addresses where TLS certificate information is available. This information can be accessed through the IP API and various Netify Data Feed datasets.

In the adjacent example, we see that the *.discourse.org certificate common name is associated with the Discourse application.

TLS Certificate Info
Common Name
*.discourse.org
Application
Discourse - Logo Discourse

TLS Certificate Attributes

common_name

string
The common name associated with the base TLS certificate.

application

object - Application Object
If the TLS certificate common name is related to a specific application, the application object is provided.

TLS Certificate Object - JSON Overview

"tls_certificate": {
  "common_name": "*.discourse.org",
  "application": { Application Attributes }
}

TLS Certificate Object - JSON Example

"tls_certificate": {
  "common_name": "*.discourse.org",
  "application": {
    "id": 11067,
    "tag": "discourse",
    "label": "Discourse",
    "description": "Discourse is ...",
    "home_page": {
      "url": "https://www.discourse.org",
      "text": "Discourse"
    },
    "category": {
      "id": 24,
      "tag": "social-media",
      "label": "Social Media"
    },
    "favicon": "https://static.netify.ai...",
    "icon": "https://static.netify.ai...",
    "logo": "https://static.netify.ai...",
    "favicon_source": "app",
    "icon_source": "app",
    "logo_source": "default"
  }
}