Last.fm · JSON Structure

Lastfm Artist Structure

JSON Structure representation of a Last.fm artist record with stats, tags, similar artists, and bio.

Type: object Properties: 8 Required: 1
MusicAudioScrobblingRecommendationsChartsPublic APIsAudioScrobbler

LastfmArtistStructure is a JSON Structure definition published by Last.fm, describing 8 properties, of which 1 is required. It conforms to the https://json-structure.org/draft/2025/schema meta-schema.

Properties

name mbid url ontour stats similar tags bio

Meta-schema: https://json-structure.org/draft/2025/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2025/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lastfm/main/json-structure/lastfm-artist-structure.json",
  "name": "LastfmArtistStructure",
  "description": "JSON Structure representation of a Last.fm artist record with stats, tags, similar artists, and bio.",
  "type": "object",
  "properties": {
    "name": { "type": "string" },
    "mbid": { "type": "string" },
    "url": { "type": "string" },
    "ontour": { "type": "string" },
    "stats": {
      "type": "object",
      "properties": {
        "listeners": { "type": "string" },
        "playcount": { "type": "string" },
        "userplaycount": { "type": "string" }
      }
    },
    "similar": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "url": { "type": "string" }
        }
      }
    },
    "tags": {
      "type": "array",
      "items": { "type": "string" }
    },
    "bio": {
      "type": "object",
      "properties": {
        "summary": { "type": "string" },
        "content": { "type": "string" }
      }
    }
  },
  "required": ["name"]
}