Documentation Index
Fetch the complete documentation index at: https://mintlify.com/jonathan343/spotify-sdk/llms.txt
Use this file to discover all available pages before exploring further.
Artist Models
The artist models represent artist data from the Spotify API. Artists can be embedded in other objects or returned with full profile details.SimplifiedArtist
Basic artist information embedded in other objects like albums and tracks.Fields
External URLs for this artist. See Common Models.
A link to the Web API endpoint providing full details of the artist
The Spotify ID for the artist
The name of the artist
The object type, always “artist”
The Spotify URI for the artist
Example JSON
Artist
Complete artist profile with followers, genres, images, and popularity. ExtendsSimplifiedArtist.
Additional Fields
Follower count and information. See Common Models.
A list of genres the artist is associated with (e.g., “rock”, “pop”, “indie”)
Profile images for the artist in various sizes. See Common Models.
The popularity of the artist, between 0 and 100, with 100 being the most popular. Calculated based on the popularity of the artist’s tracks.
Example JSON
Model Relationships
Artist Model Hierarchy
SimplifiedArtistprovides just the core identification fields (id, name, URI, etc.)ArtistextendsSimplifiedArtistand adds profile information like followers, genres, images, and popularity
Album or Track objects), while the full Artist model is returned from artist-specific endpoints.