The OPTIONS method is usually used for cross origin requests (CORS). So since your app is on a different origin (domain) than the back-end, it will first send an OPTIONS request to verify that it's allowed to perform that operation.
In your case, it seems your endpoint is not open for CORS.
Perhaps you could try enabling the proxy checkbox at the bottom of the API dialog to see if that helps? 🤞