Speed Test Object

The Speed Test List (speedtest_list ) is provided on IP addresses running consumer speed test servers. This information is available through both the IP API and the Speed Test Datasets.

Typically, only one speed test service runs per IP address, but there are cases where multiple speed test servers operate on a single IP. Every item in speedtest_list is a speed test object described below.


Speed Test List

The Speed Test List provides a list of detected speed test services running on the IP. It is worth noting that only speed test servers will have a speedtest_list attribute. Other traffic related to a speed test service (e.g., blogs, downloads, APIs) will still be represented by the application_list attribute. For example, an IP hosting a speed test blog will be listed in the application_list attribute but will not have a speedtest_list attribute set.

Speed Test List - JSON Overview

"speedtest_list": [
    { Speed Test Object },
    { Speed Test Object },
    ...
}

Speed Test Attributes

application

object - Application Object
The speed test application object.

tag

string
The internal tag of the speed test server.

hostname

string
The primary hostname associated with the speed test server.

sponsor

string
The company hosting the speed test server, typically a cloud hosting or Internet service provider (ISP).

Speed Test Object - JSON Example

"speedtest_list": [
  {
    "application": {
      "id": 10279,
      "tag": "speedtest",
      "label": "Speedtest",
      "full_label": "Speedtest by Ookla",
      "description": "Ookla Speedtest ...",
      "home_page": {
        "url": "https://www.speedtest.net/about",
        "text": "Speedtest"
      },
      "category": {
        "id": 27,
        "tag": "technology",
         "label": "Technology"
      },
      "favicon": "https://static.netify.ai/...",
      "icon": "https://static.netify.ai/...",
      "logo": "https://static.netify.ai/...",
      "favicon_source": "app",
      "icon_source": "app",
      "logo_source": "app"
    },
    "tag": "ST47750",
    "hostname": "server-47750.prod....",
    "sponsor": "TekSavvy"
  }
]