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

# List all known output devices (discovered + virtual)



## OpenAPI

````yaml /api-reference/openapi.json get /devices
openapi: 3.1.0
info:
  title: Rockbox HTTP API
  version: 1.0.0
  summary: >-
    HTTP REST API for rockboxd — playback, library, playlists, devices,
    settings.
  description: >-
    Rockbox Daemon exposes its full feature surface over HTTP REST on port 6063
    (configurable via `ROCKBOX_TCP_PORT`). It complements the GraphQL API on
    :6062 and the gRPC API on :6061 — all three speak to the same in-process
    state.


    All handlers are defined in `crates/server/src/handlers/` and registered in
    `crates/server/src/lib.rs:run_http_server()`.
  contact:
    name: Rockbox Daemon
    url: https://github.com/tsirysndr/rockboxd
  license:
    name: GPL-2.0
    url: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
servers:
  - url: http://localhost:6063
    description: Default local rockboxd
security: []
tags:
  - name: Albums
  - name: Artists
  - name: Tracks
  - name: Search
  - name: Browse
  - name: Player
  - name: Playlist (queue)
  - name: Saved playlists
  - name: Smart playlists
  - name: Track stats
  - name: Devices
  - name: Settings
  - name: System
  - name: Bluetooth
paths:
  /devices:
    get:
      tags:
        - Devices
      summary: List all known output devices (discovered + virtual)
      operationId: getDevices
      responses:
        '200':
          description: Devices
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Device'
              example:
                - id: builtin
                  name: Rockbox (Built-in)
                  host: localhost
                  ip: 127.0.0.1
                  port: 0
                  service: builtin
                  app: builtin
                  is_connected: false
                  base_url: null
                  is_cast_device: false
                  is_source_device: false
                  is_current_device: true
                - id: fifo
                  name: Snapcast (FIFO)
                  host: localhost
                  ip: 127.0.0.1
                  port: 0
                  service: fifo
                  app: fifo
                  is_connected: false
                  base_url: null
                  is_cast_device: false
                  is_source_device: false
                  is_current_device: false
                - id: squeezelite
                  name: Squeezelite
                  host: localhost
                  ip: 127.0.0.1
                  port: 3483
                  service: squeezelite
                  app: squeezelite
                  is_connected: false
                  base_url: null
                  is_cast_device: false
                  is_source_device: false
                  is_current_device: false
                - id: 158759fe25f1a23ac2e12721b038e860
                  name: Salon TV
                  host: 158759fe-25f1-a23a-c2e1-2721b038e860.local
                  ip: 192.168.1.60
                  port: 8009
                  service: chromecast
                  app: chromecast
                  is_connected: false
                  base_url: null
                  is_cast_device: true
                  is_source_device: false
                  is_current_device: false
                - id: snapcast-192.168.1.220
                  name: Snapcast
                  host: pi4-2.local
                  ip: 192.168.1.220
                  port: 4953
                  service: snapcast
                  app: Snapcast
                  is_connected: false
                  base_url: null
                  is_cast_device: true
                  is_source_device: false
                  is_current_device: false
                - id: 92736CF1CD65@Pi4._raop._tcp.local.
                  name: Pi4
                  host: pi4-2.local
                  ip: 192.168.1.220
                  port: 5000
                  service: airplay
                  app: AirPlay
                  is_connected: false
                  base_url: null
                  is_cast_device: true
                  is_source_device: false
                  is_current_device: false
components:
  schemas:
    Device:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        host:
          type: string
        ip:
          type: string
        port:
          type: integer
          format: int32
        service:
          type: string
          description: >-
            builtin | fifo | airplay | squeezelite | upnp | chromecast |
            snapcast
        app:
          type: string
        is_connected:
          type: boolean
        is_cast_device:
          type: boolean
        is_source_device:
          type: boolean
        is_current_device:
          type: boolean
        base_url:
          type: string
          nullable: true

````