Skip to main content
GET
/
api
/
v1
/
misc
/
background-sounds
List predefined background sounds
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://blackbox.dasha.ai/api/v1/misc/background-sounds', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "uri": "<string>"
    }
  ]
}

Response

200 - application/json

Returns predefined background sounds successfully

List of predefined background sounds available for creating ambient atmosphere during agent calls. These sounds can be configured in the agent's ambient noise feature to make conversations sound more natural by adding environmental audio.

items
object[]
required

Available predefined background sounds with their identifiers, names, descriptions, and URIs. Use the URI values when configuring the ambient noise feature for agents. Agents can also use custom uploaded media files in addition to these predefined sounds.