Bubble API connector, header problem with GET request

Hello,

Two days ago I linked an api to our bubble app that basically sends text messages. The POST request works however the GET request does not.

(We are using “isendpro” to send the text messages, the POST send the phone number and text message and the API does the rest, we need the GET to retreive our credit every day so we know if we can still send texts)

Like I said, the POST works great however the GET does not because of a header problem:

The website explains that the response type should be application/json and we need a header (Underlined in red). I’ve looked on others topics and apparently the “Accept” is translated as “Authorization”, so I set it to “application/json” but it didn’t work and one solution was to put a header : “Content-Type” also to “application/json” . Like so:

Keep in mind that I’ve tried without the headers, with only one and with both but it never worked.

I always end up with the following message:

If anyone has the solution, it would be really helpful because I don’t want to run such a simple task on a distant server.

Thank you in advance

Remove authorization in header.

Alright it worked, I was sure that I already tried it with only Content-Type but apparently not.

Well thank you very much.
Have a nice day