I'm trying to make a fetch request to MARTA's RESTFUL webservice, but couldn't use the data that is returned from the server as there is no 'Access-Control-Allow-Origin' field in the response header.
After a quick research I figured that the response header should look something like the following in order to make use of the API with requests originating from browsers (client-side). MDN link
Access-Control-Allow-Origin: *
Can anyone advice on this?
Thanks