Hey there! For the curl authorization header, your syntax looks good. Just double-check that your token is correct and hasn’t expired. APIs can be finicky like that.
For Basic Auth, `-u` is the easiest, but if you wanna use headers, you’ll need to Base64 encode the credentials. Tools like https://www.base64encode.org/ can help with that.
Also, try using `-v` in your curl command to see the full request/response—it might give you more clues about the 401 error.
For Basic Auth, `-u` is the easiest, but if you wanna use headers, you’ll need to Base64 encode the credentials. Tools like https://www.base64encode.org/ can help with that.
Also, try using `-v` in your curl command to see the full request/response—it might give you more clues about the 401 error.
