You can use this token, this token is a guest token from genius mobile app
Last active
December 26, 2023 17:20
-
-
Save alt-art/f5e38428fc4f814c991a447f8d719b83 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const geniusAPI = axios.create({ | |
baseURL: 'https://api.genius.com', | |
headers: { | |
Authorization: `Bearer ZTejoT_ojOEasIkT9WrMBhBQOz6eYKK5QULCMECmOhvwqjRZ6WbpamFe3geHnvp3`, | |
}, | |
}); | |
const id = 3352793; | |
const { data } = await geniusAPI.get(`/songs/${id}?text_format=plain`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment