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. Devices
    3. Get Device

    Get A Mic Device

    Get information about a specific microphone device by its ID

    GET
    /api/v1/mics/{mic_id}

    Description

    API to retrieve detailed information about a specific microphone device by its ID. Refer to the Mic Device Object for more details.

    Authentication

    Access Token is required via Bearer token authentication. Refer to the Authentication section for more details.

    Response

    {
      "data": {
        "id": "string",
        "name": "string",
        "edge_id": "string",
        "location": {
          "latitude": -90,
          "longitude": -180
        },
        "status": "active",
        "metadata": {
          "model": "string",
          "firmware_version": "string",
          "custom_data": {}
        },
        "created_at": "2019-08-24T14:15:22Z",
        "updated_at": "2019-08-24T14:15:22Z"
      }
    }

    Request Examples

    Run In Postman
    const response = await fetch('https://openapi.deeplyinc.com/api/v1/mics/mic_123', {
      method: 'GET',
      headers: {
        "Authorization": "Bearer YOUR_ACCESS_TOKEN"
      }
    });
    
    const data = await response.json();
    List Mic Devices
    Update Mic Device

    On this page

    DescriptionAuthenticationResponseRequest Examples

    Path Parameters

    mic_id
    required
    string

    Unique identifier of the microphone device