Deeply API Documentation main logoDeeply API Documentation main logo textDeeply API Documentation main logo text
User GuideServer API Reference
k

Quick Start

API Quick Start Guide
Authorization
Rate Limit

Architecture

Overall Architecture
Edge Server System

Events

Events
Event Categories
List Events
GET
Get An Event
GET

Live Events

Live Events
Listen Live Events
WebSocket

Edges

Edge Server
List Edge Servers
GET
Get An Edge Server
GET
Update Edge Server
PATCH

Microphones

Mic Device
List Mic Devices
GET
Get A Mic Device
GET
Update Mic Device
PATCH

Auth

Reissue Token
GET

© 2025 Deeply Inc.

Deeply Logo Icon

Deeply API Documentation

    1. reference
    2. Edges
    3. Get Edge Server

    Get An Edge Server

    Get specific edge server details by its ID

    GET
    /api/v1/edges/{edge_id}

    Description

    API to retrieve a specific edge server's details by its ID. Refer to Edge Server for more information about the edge object.

    Authentication

    Access Token is required. Refer to Authentication for more information.

    Response

    {
      "id": "string",
      "name": "string",
      "description": "string",
      "status": "enum(active | inactive)",
      "created_at": "2019-08-24T14:15:22Z",
      "updated_at": "2019-08-24T14:15:22Z"
    }

    Request Examples

    Run In Postman
    const response = await fetch('https://api.example.com/v1/edges/edge_123?id=edge_123', {
      method: 'GET',
      headers: {
        "Authorization": "Bearer YOUR_ACCESS_TOKEN"
      }
    });
    
    const data = await response.json();
    List Edge Servers
    Update Edge Server

    On this page

    DescriptionAuthenticationResponseRequest Examples

    Path Parameters

    edge_id
    required
    string

    Unique identifier of the edge server