Logo

Docs

Artists

Artist Models

Artist resource shape.

Artist

interface Artist extends Resource {
  type: "artist";
  attributes: {
    name: string;
    artworkUrl?: string;
  };
  relationships?: {
    tracks?: List<Song>;
    albums?: List<Album>;
  };
}

On this page