> For the complete documentation index, see [llms.txt](https://help.blings.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.blings.io/role-guides/creator/studio/custom-elements-advance/audio-overlay.md).

# Audio Overlay

Go to the Blings Platform → Integration → open the advance tab and paste the following code:

```jsx

const audio = 'AUDIO LINK HERE';
params.rest = {overlay : { audio: [{ url: audio, volume: 1, loop: true }] } }
```

* loop can be true or false
* Replace the link of the audio inside the quotes
