I dont even know if i am using Fuel right but what i am trying to achive is the same thing that's done here with Pyhton (and Requests):```import requests
def request_song_info(song_title, artist_name):
base_url = '
https://api.genius.com'
headers = {'Authorization': 'Bearer ' + 'INSERT YOUR TOKEN HERE'}
search_url = base_url + '/search'
data = {'q': song_title + ' ' + artist_name}
response = requests.get(search_url, data=data, headers=headers)
return response
```