Skip to main content
The Spotify plugin syncs data locally. Use corsair.spotify.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.

Albums

Path: spotify.db.albums.search

Searchable filters

Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Artists

Path: spotify.db.artists.search

Searchable filters

Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Playlist Items

Path: spotify.db.playlistItems.search

Searchable filters

Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Playlists

Path: spotify.db.playlists.search

Searchable filters

Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Tracks

Path: spotify.db.tracks.search

Searchable filters

Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Users

Path: spotify.db.users.search

Searchable filters

Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.