Skip to content
DocumentationAPI Reference

Save Audiobooks for Current User

me.audiobooks.save(AudiobookSaveParams**kwargs)
PUT/me/audiobooks

Save one or more audiobooks to the current Spotify user's library.

ParametersExpand Collapse
ids: str

A comma-separated list of the Spotify IDs. For example: ids=18yVqkdbdRvS24c0Ilj2ci,1HGw3J3NxZO1TP1BTtVhpZ. Maximum: 50 IDs.

Save Audiobooks for Current User

import os
from spotted import Spotted

client = Spotted(
    access_token=os.environ.get("SPOTIFY_ACCESS_TOKEN"),  # This is the default and can be omitted
)
client.me.audiobooks.save(
    ids="18yVqkdbdRvS24c0Ilj2ci,1HGw3J3NxZO1TP1BTtVhpZ,7iHfbu1YPACw6oZPAFJtqe",
)
Returns Examples