Cross origin resource sharing

The API supports Cross Origin Resource Sharing (CORS) for AJAX requests from any origin. You can read the CORS W3C Recommendation.

Here's a sample request sent from a browser hitting http://example.com:

$ curl -I https://api.vaix.ai/api/info/packages \\
  -H "Origin: http://example.com"
HTTP2 200

Was this helpful?