Last Fm
Skill by keyfrog-21k
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/keyfrog-21k/last-fm# OpenClaw-Last.fm
A openclaw Skill with Last.fm API
## Requirements
- Last.fm API Key ([Get in website](https://www.last.fm/api))
## How to request API
- Root URL: `https://ws.audioscrobbler.com/2.0/` (GET/POST)
### Required parameters
- `api_key`: API Key
- `method`: Method name
- `format`: XML (default) or JSON
---
## Methods
Below are commonly used Last.fm methods grouped by resource type.
All requests use the same base URL and append query parameters.
---
### Artist
#### `artist.getInfo`
Get detailed information about a specific artist (bio, images, stats, tags, similar artists, etc.).
**Example request (JSON):**
```http
GET https://ws.audioscrobbler.com/2.0/?method=artist.getinfo&artist=Radiohead&api_key=YOUR_API_KEY&format=json
artist.getTopTracks
Get the top tracks for an artist, ordered by playcount.
Example request:
GET https://ws.audioscrobbler.com/2.0/?method=artist.gettoptracks&artist=Radiohead&api_key=YOUR_API_KEY&format=json
artist.getTopAlbums
Get the top albums for an artist, ordered by playcount.
Example request:
GET https://ws.audioscrobbler.com/2.0/?method=artist.gettopalbums&artist=Radiohead&api_key=YOUR_API_KEY&format=json
artist.search
Search for artists by name and get a list of matching artists.
Example request:
GET https://ws.audioscrobbler.com/2.0/?method=artist.search&artist=Radiohead&api_key=YOUR_API_KEY&format=json
Album
album.getInfo
Get album metadata (tracks, tags, playcount, cover art, etc.) for a given artist and album.
Example request:
GET https://ws.audioscrobbler.com/2.0/?method=album.getinfo&artist=Radiohead&album=OK+Computer&api_key=YOUR_API_KEY&format=json
album.getTopTags
Get the most popular tags applied to a specific album.
Example request:
GET https://ws.audioscrobbler.com/2.0/?method=album.gettoptags&artist=Radiohead&album=OK+Computer&api_key=YOUR_API_KEY&format=json
album.search
Search for albums by name and get possible matches.
Example request:
GET https://ws.audioscrobbler.com/2.0/?method=album.search&album=OK+Computer&api_key=YOUR_API_KEY&format=json
Track
track.getInfo
Get detailed metadata for a track, including album, duration, listeners, playcount, and wiki (if available).
Example request:
GET https://ws.audioscrobbler.com/2.0/?method=track.getinfo&artist=Radiohead&track=Karma+Police&api_key=YOUR_API_KEY&format=json
track.getTopTags
Get the most popular tags for a given track.
Example request:
GET https://ws.audioscrobbler.com/2.0/?method=track.gettoptags&artist=Radiohead&track=Karma+Police&api_key=YOUR_API_KEY&format=json
track.search
Search for tracks by name (and optionally by artist) and get a list of matches.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-keyfrog-21k-last-fm": {
"enabled": true,
"auto_update": true
}
}
}