All of my OpenAPI pages are completely blank
All of my OpenAPI pages are completely blank
In this scenario, it’s likely that either Mintlify cannot find your OpenAPI document,
or your OpenAPI document is invalid.Running 
mint dev
locally should reveal some of these issues.To verify your OpenAPI document will pass validation:- Visit this validator
- Switch to the “Validate text” tab
- Paste in your OpenAPI document
- Click “Validate it!”

One of my OpenAPI pages is completely blank
One of my OpenAPI pages is completely blank
This is usually caused by a misspelled Notice that the path in the
openapi
field in the page metadata. Make sure
the HTTP method and path match the HTTP method and path in the OpenAPI document exactly.Here’s an example of how things might go wrong:get-user.mdx
openapi.yaml
openapi
field has a trailing slash, whereas the path in the OpenAPI
document does not.Another common issue is a misspelled filename. If you are specifying a particular OpenAPI document
in the openapi
field, ensure the filename is correct. For example, if you have two OpenAPI
documents openapi/v1.json
and openapi/v2.json
, your metadata might look like this:api-reference/v1/users/get-user.mdx
Requests from the API Playground don't work
Requests from the API Playground don't work
If you have a custom domain configured, this could be an issue with your reverse proxy. By
default, requests made via the API Playground start with a
POST
request to the
/api/request
path on the docs site. If your reverse proxy is configured to only allow GET
requests, then all of these requests will fail. To fix this, configure your reverse proxy to
allow POST
requests to the /api/request
path.Alternatively, if your reverse proxy prevents you from accepting POST
requests, you can configure Mintlify to send requests directly to your backend with the api.playground.proxy
setting in the docs.json
, as described in the settings documentation. When using this configuration, you will need to configure CORS on your server since requests will come directly from users’ browsers rather than through your proxy.OpenAPI navigation entries are not generating pages
OpenAPI navigation entries are not generating pages
Some OpenAPI operations appear in navigation but others don't
Some OpenAPI operations appear in navigation but others don't
Mixed navigation (OpenAPI and MDX pages) not working correctly
Mixed navigation (OpenAPI and MDX pages) not working correctly