Get a Network

GET /v1/networks/{id}

Retrieves a Network info

Path parameters

  • id string Required

    Network id

    Maximum length is 50.

Responses

  • 200

    Successful response.

    Hide response attributes Show response attributes object
    • id string

      Values are fiber, cable, dsl, normal5g, wifiFast, wifi, normal4gFast, desktopDense4G, normal4g, normal3gSlow, normal2gEdge, normal2g, mobileSlow4g, or mobileRegular4g.

    • name string
  • 404

    Resource Not Found

    Hide response attributes Show response attributes object
    • message string

      A human-readable message providing more details about the error.

    • status string

      A status describing the situation

GET /v1/networks/{id}
curl \
 -X GET https://api.auditzy.com/v1/networks/{id}
Response examples (200)
{
  "data": {
    "id": "normal5g",
    "name": "5G (67 Mbps/67 Mbps, 10ms TCP RTT)"
  },
  "status": "SUCCESS"
}
Response examples (404)
{
  "message": "Resource Not Found",
  "status": "FAILURE"
}