JSON RPC 2.0 API

This section describes the communication protocol between the control system and the BTIR3 using RPC calls using the JSON-RPC 2.0 protocol

Definitions

Caution

Commands must be formatted as defined in the JSON-RPC 2.0 protocol
All commands sent over TCP transport must end with <LF>
All replies are formatted as defined in the JSON-RPC 2.0 protocol
All replies over TCP transport end up with <LF>
<LF> stands for “line feed”, corresponding hex is 0x0A

Transport protocols

JSON-RPC 2.0 commands can flow over different transport protocols, they need to be enabled in the config file of the installed api service. Per default they might not be enabled.

Transport Config Datatype Example Supported Versions
TCP jrpc2TCPInterface string eth1 >v1.0.1
TCP jrpc2TCPPort int 64823 >v1.0.1
TCP jrpc2HTTPInterface string eth1 >v1.0.1
TCP jrpc2HTTPPort int 64880 >v1.0.1

In subsequent pages all methods are described that can be used.

Concurrency

All JSON-RPC 2.0 services do support asynchronous message processing. 3rd party control Systems must keep tracking of the id’s to determine whether a request was successful or not

TCP transport

Any TCP capable application can be used to test commands. Do not forget to end up with <LF>

HTTP transport

The body of the HTTP POST request must contain the complete JSON-RPC request message, encoded with Content-Type: application/json. Either a single request object or a list of request objects is supported. If the request completes, whether or not there is an error, the HTTP response is 200 (OK) for ordinary requests or 204 (No Response) for notifications, and the response body contains the JSON-RPC response. If the HTTP request method is not “POST”, BTIR3 reports 405 (Method Not Allowed). If the Content-Type is not application/json, BTIR3 reports 415 (Unsupported Media Type).

Test from a linux shell:
curl -i -X POST -H ‘Content-Type: application/json’ -d ‘{“jsonrpc”:“2.0”,“id”:1,“method”:“rpc.serverInfo”}’ http://host:64880

Subsections of JSON RPC 2.0 API

bluetooth

bluetooth commands are generic commands for all nexgentec™ devices that support Bluetooth. These commands utilize the generic Bluetooth protocol, enabling seamless integration and control across supported devices.

bluetooth.config.set

Change the Bluetooth configuration

Request

Note

The mute function only works if playback is currently active.

Note

The defaults parameter clears all configurations and ignores all other parameters sent with it.

Method Param Value Comment Supported Versions
bluetooth.config.set >=v1.0.16
name string Bluetooth Name >=v1.0.16
status 0,1 Power on (1) or off (0) >=v1.0.16
pairing 0,1 activate pairing (1) or deactivate (0) >=v1.0.16
reconnect 0-15 activate and retry reconnect (1-15) or deactivate (0) >=v1.0.16
pairingMode 0,1 Yes/no (1) or auto (0) >=v1.0.16
mute 0,1 Mute (1) or Unmute (0) >=v1.0.16
defaults 1 All Settings to Default (1) >=v1.0.16
{
  "method": "bluetooth.config.set",
  "params": {
    "pairing": 1,
    "status": 1,
    "pairingMode": 1,
    "name": "MyBTDev",
    "reconnect": 1
  },
  "id": 1,
  "jsonrpc": "2.0"
}

Reply

Result Comment
null null means acknowledged, no error
{"jsonrpc":"2.0","id":1,"result":null}

bluetooth.config.get

Get the Bluetooth configuration

Request

Method Param Value Comment Supported Versions
bluetooth.config.get >=v1.0.16
{"jsonrpc":"2.0","id":1,"method":"bluetooth.config.get"}

Reply

Result Key Comment
config
pairing 1 if pairing is active, 0 if pairing is deactivated
media Read only max refresh rate of media info
status 1 if bluetooth antenna is active, 0 if not active
pairingMode 1 for Yes/No, 0 for Auto pairing
codecs Read only activated codecs
address Read only Bluetooth MAC Address
error null if there is no error on the channel; otherwise, displays the error message.
profiles Read only activated profiles
name Bluetooth Name
firmware Firmware version of Bluetooth Interface
reconnect 1-15 if active and retry, 0 no reconnect
{
  "result": {
    "pairing": 0,
    "media": {
      "playProgRate": 5,
      "trackID3Info": 1
    },
    "status": 1,
    "pairingMode": 1,
    "codecs": {
      "sbc": 1,
      "aac": 1,
      "aptxLL": 1,
      "aptxHD": 1,
      "aptxAD": 1,
      "aptx": 1
    },
    "defaults": null,
    "address": "dc:0d:30:40:73:4a",
    "error": null,
    "profiles": {
      "a2dpSource": 0,
      "bisSink": 0,
      "cisSink": 1,
      "a2dpSink": 1
    },
    "name": "ngt-btir3-8c1f648a427a",
    "mute": null,
    "firmware": "V1.1.6",
    "reconnect": 5
  },
  "id": 481,
  "jsonrpc": "2.0"
}

bluetooth.config.subscribe

This method enables push notifications for configuration changes of the Bluetooth chip. The pushed status messages follow the same format as the bluetooth.config.get replies.

Info

Subscribe to receive real-time updates about configuration changes of the Bluetooth chip.

Note

Push messages over HTTP transport are not supported.

Request

Method Param Value Comment Supported Versions
bluetooth.config.subscribe >=v1.0.16
{"jsonrpc":"2.0","id":1,"method":"bluetooth.config.subscribe"}

Reply

Result Comment
null null means acknowledged, no error
{"jsonrpc":"2.0","id":1,"result":null}

bluetooth.config.unsubscribe

Unsubscribe all Bluetooth config change push messages

Request

Method Param Value Comment Supported Versions
amplifier.channels.unsubscribe >=v1.0.16
{"jsonrpc":"2.0","id":1,"method":"bluetooth.config.unsubscribe"}

Reply

Result Comment
null null means acknowledged, no error
{"jsonrpc":"2.0","id":1,"result":null}

bluetooth.peer.set

Set various aspects of the peer (connected Bluetooth device).

Request

Method Param Value Comment Supported Versions
bluetooth.peer.set volume 0-15 Set the volume. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "bluetooth.peer.set",
  "params": {
    "volume": 10
  }
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": null
}

bluetooth.peer.get

Retrieve all information about the connected peer (connected Bluetooth device).

Request

Method Param Value Comment Supported Versions
bluetooth.peer.get >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "bluetooth.peer.get"
}

Reply

Result Key Comment
peer
mac Bluetooth MAC address of the connected device.
media All media information, including artist, title, album, elapsed time, and total duration.
connection The current connection state: unsupported, standby, connecting, connected, paused, streaming.
volume The current volume level of the Bluetooth device.
error null if there is no error; otherwise, displays the error message.
node The unique identifier of the Bluetooth module.
name The name of the connected Bluetooth device.
codec The audio codec being used (e.g., AAC, SBC).
pairCode The pairing code, if applicable; otherwise, null.
{
  "result": {
    "mac": "74:15:f5:ea:05:83",
    "media": {
      "artist": "Hosini & Jones",
      "elapsed": 3754,
      "total": 288011,
      "title": "Grön",
      "state": "playing",
      "album": "Cafe del Mar ChillWave 3"
    },
    "connection": "streaming",
    "volume": 11,
    "error": null,
    "node": "ngt-btir3-8c1f648a427c",
    "name": "iPad",
    "codec": "AAC",
    "pairCode": null
  },
  "id": 180,
  "jsonrpc": "2.0"
}

bluetooth.peer.subscribe

This method enables push notifications for status changes of the connected Bluetooth peer. The pushed status messages follow the same format as the bluetooth.peer.get replies.

Info

Subscribe to receive real-time updates about the connected peer’s status.

Note

Push messages over HTTP transport are not supported.

Request

Method Param Value Comment Supported Versions
bluetooth.peer.subscribe Subscribe to peer status changes. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "bluetooth.peer.subscribe"
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": null
}

bluetooth.peer.unsubscribe

Unsubscribe from all status change messages for the connected Bluetooth peer (connected Bluetooth device).

Request

Method Param Value Comment Supported Versions
bluetooth.peer.unsubscribe Unsubscribe from peer status changes. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "bluetooth.peer.unsubscribe"
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": null
}

bluetooth.peer.transport

Control playback and transport actions for the connected Bluetooth device.

Request

Method Param Value Comment Supported Versions
bluetooth.peer.transport play 1 Start playback. >=v1.0.16
bluetooth.peer.transport stop 1 Stop playback. >=v1.0.16
bluetooth.peer.transport pause 1 Pause playback. >=v1.0.16
bluetooth.peer.transport skipfwd 1 Skip to the next track. >=v1.0.16
bluetooth.peer.transport skiprev 1 Skip to the previous track. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "bluetooth.peer.transport",
  "params": {
    "play": 1
  }
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": null
}

bluetooth.peer.release

Release the currently connected Bluetooth peer (connected Bluetooth device).

Request

Method Param Value Comment Supported Versions
bluetooth.peer.release Release the connected Bluetooth peer. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "bluetooth.peer.release"
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": null
}

bluetooth.peers.release

Release all currently connected Bluetooth peers (connected Bluetooth devices).

Request

Method Param Value Comment Supported Versions
bluetooth.peers.release Release all connected Bluetooth peers. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "bluetooth.peers.release"
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": null
}

bluetooth.pairedlist.get

Retrieve a list of all paired Bluetooth devices.

Request

Method Param Value Comment Supported Versions
bluetooth.pairedlist.get Retrieve the list of paired devices. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 68,
  "method": "bluetooth.pairedlist.get"
}

Reply

Result Key Comment
result peers A list of paired devices, each containing the following details:
index: The index of the paired device.
name: The name of the paired Bluetooth device.
mac: The MAC address of the paired Bluetooth device.
error null if there is no error; otherwise, displays the error message.
{
  "jsonrpc": "2.0",
  "id": 68,
  "result": {
    "node": "ngt-btir3-8c1f648a427c",
    "peers": [
      {
        "index": 1,
        "name": "iPad",
        "mac": "74:15:f5:ea:05:83"
      },
      {
        "index": 2,
        "name": "MyPhone",
        "mac": "16:15:f5:44:2a:ab"
      }
    ],
    "error": null
  }
}

bluetooth.pairedlist.clear

Clear the list of all paired Bluetooth devices.

Request

Method Param Value Comment Supported Versions
bluetooth.pairedlist.clear Clear all paired devices. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 69,
  "method": "bluetooth.pairedlist.clear"
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 69,
  "result": null
}

bluetooth.pairedlist.remove

Remove specific devices from the paired Bluetooth devices list.

Request

Method Param Value Comment Supported Versions
bluetooth.pairedlist.remove peers Array of paired device objects Specify devices to remove by index, name, or MAC address. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 71,
  "method": "bluetooth.pairedlist.remove",
  "params": {
    "peers": [
      {
        "index": 2
      },
    ]
  }
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 71,
  "result": null
}

bluetooth.pairedlist.subscribe

Subscribe to push notifications for changes in the paired Bluetooth devices list. This is useful for receiving real-time updates when devices are added or removed from the paired list. The pushed status messages follow the same format as the bluetooth.pairedlist.get replies.

Info

Subscribe to receive real-time updates about paired list changes.

Note

Push messages over HTTP transport are not supported.

Request

Method Param Value Comment Supported Versions
bluetooth.pairedlist.subscribe Subscribe to paired list changes. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 232,
  "method": "bluetooth.pairedlist.subscribe"
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 232,
  "result": null
}

bluetooth.pairedlist.unsubscribe

Unsubscribe from push notifications for changes in the paired Bluetooth devices list, stopping any further updates about paired list changes.

Request

Method Param Value Comment Supported Versions
bluetooth.pairedlist.unsubscribe Unsubscribe from paired list changes. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 233,
  "method": "bluetooth.pairedlist.unsubscribe"
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 233,
  "result": null
}

bluetooth.acl.get

Retrieve the current Access Control List (ACL) for Bluetooth devices.

Request

Method Param Value Comment Supported Versions
bluetooth.acl.get Retrieve the current ACL. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 101,
  "method": "bluetooth.acl.get"
}

Reply

Result Key Comment
result rules A list of ACL rules, each containing the following details:
mac: The MAC address of the device.
name: Name of the device.
access: 1 for allowed devices, 0 for denied devices.
error null if there is no error; otherwise, displays the error message.
{
  "jsonrpc": "2.0",
  "id": 101,
  "result": {
    "rules": [
      {
        "mac": "90:B1:44:9A:C2:5F",
        "name": "MySuperPhone1",
        "access": 1
      },
      {
        "mac": "90:B1:44:9A:C2:5E",
        "name": "MySuperPhone2",
        "access": 0
      }
    ],
    "error": null
  }
}

bluetooth.acl.clear

Clear all entries from the Access Control List (ACL).

Request

Method Param Value Comment Supported Versions
bluetooth.acl.clear Clear all ACL entries. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 102,
  "method": "bluetooth.acl.clear"
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 102,
  "result": null
}

bluetooth.acl.add

Add new rules to the Access Control List (ACL).

Request

Method Param Value Comment Supported Versions
bluetooth.acl.add rules Array of ACL rule objects Specify devices to add by MAC address and access type, name not mandatory >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 103,
  "method": "bluetooth.acl.add",
  "params": {
    "rules": [
      {
        "mac": "90:B1:44:9A:C2:5F",
        "name": "MySuperPhone1",
        "access": 1
      },
    ]
  }
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 103,
  "result": null
}

bluetooth.acl.remove

Remove specific rules from the Access Control List (ACL).

Request

Method Param Value Comment Supported Versions
bluetooth.acl.remove rules Array of ACL rule objects Specify devices to remove by MAC address or Name >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 104,
  "method": "bluetooth.acl.remove",
  "params": {
    "rules": [
      {
        "mac": "90:B1:44:9A:C2:5E"
      }
    ]
  }
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 104,
  "result": null
}

bluetooth.acl.subscribe

Subscribe to push notifications for changes in the Access Control List (ACL). This is useful for receiving real-time updates about modifications to the ACL, such as adding or removing devices.

The pushed status messages follow the same format as the bluetooth.acl.get replies.

Info

Subscribe to receive real-time updates about ACL changes.

Note

Push messages over HTTP transport are not supported.

Request

Method Param Value Comment Supported Versions
bluetooth.acl.subscribe Subscribe to ACL changes. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 240,
  "method": "bluetooth.acl.subscribe"
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 240,
  "result": null
}

bluetooth.acl.unsubscribe

Unsubscribe from push notifications for changes in the Access Control List (ACL), stopping any further updates about ACL changes.

Request

Method Param Value Comment Supported Versions
bluetooth.acl.unsubscribe Unsubscribe from ACL changes. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 241,
  "method": "bluetooth.acl.unsubscribe"
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 241,
  "result": null
}

bluetooth.acl.config.get

Retrieve the current Access Control List (ACL) configuration.

Request

Method Param Value Comment Supported Versions
bluetooth.acl.config.get Retrieve the ACL configuration. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 119,
  "method": "bluetooth.acl.config.get"
}

Reply

Result Key Comment
result defaultLevel 1 if new devices are allowed after pairing, 0 if they are rejected.
error null if there is no error; otherwise, displays the error message.
{
  "jsonrpc": "2.0",
  "id": 119,
  "result": {
    "defaultLevel": 1,
    "error": null
  }
}

bluetooth.acl.config.set

Set the default Access Control List (ACL) configuration.

Request

Method Param Value Comment Supported Versions
bluetooth.acl.config.set defaultLevel 1, 0 1 to allow new devices after pairing, 0 to reject them. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 105,
  "method": "bluetooth.acl.config.set",
  "params": {
    "defaultLevel": 0
  }
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 105,
  "result": null
}
Info

If the default level is set to 0, all new paired devices are rejected by default. Ensure to manually add allowed devices to the ACL using the web interface or the API.
Similarly, if the default level is set to 1, all devices are allowed by default. You can later restrict access by modifying the ACL.


bluetooth.acl.config.subscribe

Subscribe to push notifications for changes in the Access Control List (ACL) configuration.

The pushed status messages follow the same format as the bluetooth.acl.config.get replies.

Info

Subscribe to receive real-time updates about ACL configuration changes.

Note

Push messages over HTTP transport are not supported.

Request

Method Param Value Comment Supported Versions
bluetooth.acl.config.subscribe Subscribe to ACL configuration changes. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 236,
  "method": "bluetooth.acl.config.subscribe"
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 236,
  "result": null
}

bluetooth.acl.config.unsubscribe

Unsubscribe from push notifications for changes in the Access Control List (ACL) configuration.

Request

Method Param Value Comment Supported Versions
bluetooth.acl.config.unsubscribe Unsubscribe from ACL configuration changes. >=v1.0.16
{
  "jsonrpc": "2.0",
  "id": 237,
  "method": "bluetooth.acl.config.unsubscribe"
}

Reply

Result Comment
null null means the request was successful, with no errors.
{
  "jsonrpc": "2.0",
  "id": 237,
  "result": null
}

fb12 bluetooth service

fb12 commands are specific to BTIR3 nexgentec™ devices. These commands are used to control the fb12 Bluetooth service, which is a chip-specific service designed for BTIR3 devices.

fb12.app.log.level.get

Get the log level for the fb12 Bluetooth service running on the BTIR3

Request

Method Param Value Comment Supported Versions
fb12.app.log.level.get >=v1.0.16
{"jsonrpc":"2.0","id":1,"method":"fb12.app.log.level.get"}

Reply

Result Comment
x Active log level
{"jsonrpc":"2.0","id":20,"result":{"level":3}}

fb12.app.log.level.set

Set the log level for fb12 service and associated processes

Request

Method Param Value Comment Supported Versions
fb12.app.log.level.set level 0-7 Log level to set >=v1.0.16
{"jsonrpc":"2.0","id":1,"method":"fb12.app.log.level.set","params":{"level":6}

Reply

Result Comment
null null means acknowledged, no error
{"jsonrpc":"2.0","id":1,"result":null}

api

api commands are generic commands for all nexgentec™ devices that have an API. These commands utilize the generic API protocol, enabling seamless integration and control across supported devices.

api.app.log.level.get

Get the log level for the api service running on the api

Request

Method Param Value Comment Supported Versions
api.app.log.level.get >=v1.0.16
{"jsonrpc":"2.0","id":1,"method":"api.app.log.level.get"}

Reply

Result Comment
x Active log level
{"jsonrpc":"2.0","id":20,"result":{"level":3}}

api.app.log.level.set

Set the log level

Request

Method Param Value Comment Supported Versions
api.app.log.level.set level 0-7 Log level to set >=v1.0.16
{"jsonrpc":"2.0","id":1,"method":"api.app.log.level.set","params":{"level":6}

Reply

Result Comment
null null means acknowledged, no error
{"jsonrpc":"2.0","id":1,"result":null}

server

server commands are generic commands for all Nexgentec™ devices that support a JSON-RPC 2.0 API. These commands provide a standard JSON-RPC method to retrieve the list of supported methods available on the device.

rpc.server.info.get (serverInfo)

Get all supported RCP methods

Request

Method Param Value Comment Supported Versions
rpc.serverInfo >1.0.1
rpc.server.info.get >=1.0.14
{"jsonrpc":"2.0","id":1,"method":"rpc.serverInfo"}

{"jsonrpc":"2.0","id":1,"method":"rpc.server.info.get"}

Reply

Result Key Comment
methods All supported methods that can be used by a 3rd party control system
counters Server counters
startTime Server start time
{
  "result": {
    "startTime": "2025-04-01T12:45:20.908934559Z",
    "metrics": {
      "bytes_written": 364,
      "rpc_requests": 3,
      "bytes_read": 165,
      "notifications_pushed": 0,
      "rpc_errors": 1,
      "servers_active": 2,
      "calls_pushed": 0
    },
    "methods": [
      "api.app.log.level.get","api.app.log.level.set","api.app.version.get","api.appLogLevelGet","api.appLogLevelSet","api.appVersionGet","bluetooth.acl.add","bluetooth.acl.clear","bluetooth.acl.config.get","bluetooth.acl.config.set","bluetooth.acl.config.subscribe","bluetooth.acl.config.unsubscribe","bluetooth.acl.get","bluetooth.acl.remove","bluetooth.acl.subscribe","bluetooth.acl.unsubscribe","bluetooth.config.get","bluetooth.config.set","bluetooth.config.subscribe","bluetooth.config.unsubscribe","bluetooth.pairedlist.clear","bluetooth.pairedlist.get","bluetooth.pairedlist.remove","bluetooth.pairedlist.subscribe","bluetooth.pairedlist.unsubscribe","bluetooth.peer.get","bluetooth.peer.release","bluetooth.peer.set","bluetooth.peer.subscribe","bluetooth.peer.transport","bluetooth.peer.unsubscribe","bluetooth.peers.release","bluetooth.pl.clear","bluetooth.pl.get","bluetooth.pl.remove","fb12.app.log.level.get","fb12.app.log.level.set","fb12.app.version.get","rpc.server.info.get","rpc.serverInfo"]
  },
  "id": 2,
  "jsonrpc": "2.0"
}