Augmented Keywords
The Cyanite.ai API offers the functionality to retreive augmented keywords for a track (LibraryTrack
or SpotifyTrack
).
The functionalilty is exposed via the Track.augmentedKeywords
field.
A track must be analyzed before the augmented keywords can be retrieved.
Example Query Operation
query AugmentedKeywordsQuery($trackId: ID!) {
libraryTrack(id: $trackId) {
__typename
... on Error {
message
}
... on Track {
id
augmentedKeywords(target: { spotify: {} }) {
__typename
... on AugmentedKeywordsError {
code
message
}
... on AugmentedKeywords {
keywords {
keyword
}
}
}
}
}
}