> ## Documentation Index
> Fetch the complete documentation index at: https://docs.graphiant.com/llms.txt
> Use this file to discover all available pages before exploring further.

# /v2/monitoring/extranet/edge-status

> Returns connectivity status for individual edges/gateways in extranet/ b2b application service monitoring. Provides granular view of which specific edges can reach server IP addresses. Shows per-edge connectivity status including healthy, impaired, or down states. Helps identify specific edge-level connectivity issues within sites.

## OpenAPI

````json GET /v2/monitoring/extranet/edge-status
{
  "openapi": "3.0.0",
  "info": {
    "title": "Graphiant APIs",
    "version": "1.0.0",
    "description": "Graphiant API documentation."
  },
  "servers": [
    {
      "url": "https://api.graphiant.com"
    }
  ],
  "security": [
    {
      "jwtAuth": []
    }
  ],
  "tags": [],
  "paths": {
    "/v2/monitoring/extranet/edge-status": {
      "get": {
        "security": [
          {
            "jwtAuth": []
          }
        ],
        "parameters": [
          {
            "in": "header",
            "name": "Authorization",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Bearer token. Format: Bearer <your_token_here>"
          },
          {
            "name": "id",
            "in": "query",
            "description": "the id associated with an entity - consumer_id for consumer, and service_id for the producer/service",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64",
              "example": 1234567891011
            },
            "example": 1
          },
          {
            "name": "isProvider",
            "in": "query",
            "description": "whether the entity is a provider or consumer",
            "required": true,
            "schema": {
              "type": "boolean",
              "example": true
            },
            "example": true
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/v2MonitoringExtranetEdgeStatusGetResponse"
                }
              }
            }
          }
        },
        "description": "Returns connectivity status for individual edges/gateways in extranet/ b2b application service monitoring. Provides granular view of which specific edges can reach server IP addresses. Shows per-edge connectivity status including healthy, impaired, or down states. Helps identify specific edge-level connectivity issues within sites."
      }
    }
  },
  "components": {
    "schemas": {
      "v2MonitoringExtranetEdgeStatusGetResponse": {
        "type": "object",
        "properties": {
          "edgeStatuses": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/statsmonExtranetEdgeStatus"
            }
          }
        },
        "additionalProperties": false
      },
      "statsmonExtranetEdgeStatus": {
        "type": "object",
        "properties": {
          "createdAt": {
            "$ref": "#/components/schemas/googleProtobufTimestamp"
          },
          "disconnectedReason": {
            "type": "string",
            "example": "No route to the server",
            "description": "the reason for the edge being disconnected"
          },
          "hostname": {
            "type": "string",
            "example": "edge1",
            "description": "the hostname of the edge"
          },
          "id": {
            "type": "integer",
            "format": "int64",
            "example": 30000000001,
            "description": "the id of the edge/device"
          },
          "siteName": {
            "type": "string",
            "example": "site1",
            "description": "the name of the site"
          },
          "status": {
            "type": "string",
            "example": "Healthy",
            "description": "the health status of the edge (Healthy, Impaired, Down)"
          }
        },
        "additionalProperties": false
      },
      "googleProtobufTimestamp": {
        "type": "object",
        "properties": {
          "nanos": {
            "type": "integer",
            "format": "int32",
            "example": 123
          },
          "seconds": {
            "type": "integer",
            "format": "int64",
            "example": 1234567891011
          }
        },
        "additionalProperties": false
      }
    },
    "securitySchemes": {
      "jwtAuth": {
        "type": "apiKey",
        "in": "header",
        "name": "authorization",
        "description": "Use `Bearer <token>`"
      }
    }
  }
}
````

