Email or username:

Password:

Forgot your password?
Top-level
Simon Willison

Just found out the hosted Swagger explorer has a ?url= parameter that can load an external schema, so here's that OpenAI OpenAPI description rendered using that petstore.swagger.io/?url=https

1 comment
mborus

@simon That's a nice trick.

When I need to analyze an external schema, I currently use a dummy FastAPI project that overrides the automatically generated docs. Which is nice if there's an NDA involved and I can't use external tools to analyze it.

gist.github.com/mborus/392be52

Go Up