Bypass cors restriction

I’m creating a react app with firebase, so I don’t have any backend. How do I bypass cors issues without creating a proxy?

Why is webflow restricting access to its api in the first place?

The simple reason why they restrict it is because you would have to put your private API key in the client-side JS code. Anyone could then view the source and do anything they want to your Webflow account with the API.

Which API endpoints do you want to call from the react app? What are you trying to build?

I wanted to call https://api.webflow.com/collections/6184f91fa882a73ec9474181/items, but finally I’ll use iframes rather than this api to display pages designed in webflow.

The easy solution would be to allow cors and have read only api keys.