3

I'm trying to make a POST request to API v3.0, but I can not. Returns this error.

https://api.finder.healthcare.gov/v3.0/getCountiesForZip. Invalid HTTP status code 503

It's about CORS, but e tried all possible ways to request, following and enabling CORS, but nothing works

Joe Germuska
  • 5,488
  • 20
  • 46
user4234
  • 31
  • 1

1 Answers1

3

Make sure you include the Content-Type header and the XML for the request in the POST body.

When I try their example it seems to work fine and the HTTP header includes Access-Control-Allow-Origin: * which should work for CORS.

screenshot of RESTClient API call

Philip Ashlock
  • 366
  • 2
  • 2