update :3
All checks were successful
Build Full Stack / release-image (push) Successful in 11m45s

This commit is contained in:
2025-04-02 22:57:52 +02:00
parent a0dde77659
commit fdf64a2bf3
12 changed files with 70 additions and 35 deletions

12
app/api/lastfm/route.ts Normal file
View File

@ -0,0 +1,12 @@
export async function GET() {
const res = await fetch(
`http://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&user=yae_miku&api_key=${process.env.API_KEY}&format=json&limit=1`,
{
headers: {
'Content-Type': 'application/json',
},
}
);
const data = await res.json();
return Response.json(data.recenttracks.track[0]);
}