|
# Getting a song
|
|
|
|
`getSong()` will fetch you information about a specific song by it's ID.
|
|
|
|
```ts
|
|
ytmusic.getSong("v7bnOxV4jAc").then(song => {
|
|
console.log(song)
|
|
})
|
|
```
|
|
|
|
See the [reference](../../references/ytmusic-methods/getSong.html) for more information.
|