Skip to content

$trackLoadType

$trackLoadType will return the load type given query.

Usage

$trackLoadType[query;type?]

Parameters

FieldTypeDescriptionRequired
querystringTitle or url of the song, this will returns: track, playlist, search or errortrue
typestringSource type: youtube, soundcloud, spotify, deezer, applemusic, etc.false

Example(s)

This will return the load type given query

1
client.command({
2
name: "loadtype",
3
code: `
4
$trackLoadType[Reckless;youtube]
5
`
6
});