Files
hamburger/app/api/lastfm/route.ts
yaemiku fdf64a2bf3
All checks were successful
Build Full Stack / release-image (push) Successful in 11m45s
update :3
2025-04-02 22:57:52 +02:00

13 lines
365 B
TypeScript

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]);
}