Get a Spotify artist by id or profile URL.
Endpoint
/v1/spotify/artist
Query
Optional Spotify artist id for the request.
Optional Spotify artist URL for the request.
const response = await fetch( "https://api.socialfetch.dev/v1/spotify/artist?artistId=1uNFoZAHBGtllmzznpCI3s", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);