How handle Cors error in Netlify?

I think the problem now might be a cors error with netlify, as I can access the api from my url now if I use the browser, pic: https://i.imgur.com/aBjZMIG.png

But through a request on my index page, I get this error response, and it looks like it’s from netlify,

and this is the response:

{“this”:“failed”,“with”:401,“because”:{“message”:“unauthorized”},“id”:“up685-FRO”}

This decided to switch my redirect from a _redirect file to netlify.toml so I can set the headers, so this is what I currently have:

The following redirect is intended for use with most SPAs that handle
routing internally.
[[redirects]]
from = “/api/**”
to = “api-link/:splat”
status = 200
headers = { Access-Control-Allow-Origin = “*”, Authorization = “Bearer api-key”}

[[headers]]
Define which paths this specific [[headers]] block will cover.
for = “/*”
[headers.values]
Access-Control-Allow-Origin = “**”
Authorization = “Bearer api-key”

[[headers]]
Define which paths this specific [[headers]] block will cover.
for = “/api/*”
[headers.values]
Access-Control-Allow-Origin = “**”
Authorization = “Bearer api-key”