Hey there!
Recently got soundcloud api key and when i try to get tracks by search query i get error 401 - A request must contain the Authorization header.
There is my code
import requests
CLIENT_ID = "id"
url = 'https://api.soundcloud.com/tracks/?client_id='+CLIENT_ID+'&q=Cahalot'
print(requests.get(url).content)
Can you help me find problem that result this?