-
Notifications
You must be signed in to change notification settings - Fork 0
Home
RubenJ01 edited this page Jan 18, 2026
·
3 revisions
A Java client library for the Last.fm API.
Create a client and start making requests:
import io.github.rubeneekhof.lastfm.api.LastFmClient;
var apiKey = "your-api-key-here";
LastFmClient client = LastFmClient.create(apiKey);
var artist = client.artists().getInfo("Cher");See Installation for Maven/Gradle setup instructions.
- Basic Usage - Getting started with the library
- Authentication - Setting up authenticated requests
- Scrobbling - Recording your listening history
- UnixTime Utilities - Working with timestamps
- API Reference - Complete API coverage
- Project Structure - Architecture overview
- Builder pattern for requests
- Authentication support
- Scrobbling
- Helper classes for timestamps
MIT License - See LICENSE for details.