0

Is there any convenient way to put Redoc together from some insurances running on several ports, for instance:

Each instance presents itself Fast API with certain endpoints.

I'd want to have the starting page where the all endpoints would be presented, let's say http://127.0.0.1:8004/redoc

Aex
  • 1
  • 1

1 Answers1

0

It could be done in your build pipeline, using the redocly join command (docs: https://redocly.com/docs/cli/commands/join/ and disclaimer: I work for Redocly). Grab each of the OpenAPI specifications, and put them into one combined file, would that do what you are looking for?

Lorna Mitchell
  • 1,819
  • 13
  • 22
  • It looks relevant. Is it possible on free plan to collect 4 APIs on one page? – Aex Jul 19 '23 at 18:10
  • Yes, the CLI tool is open source and free to use. Collect as many APIs as you like! The free plan would let you publish the docs to the Redocly platform if you wanted to. – Lorna Mitchell Jul 20 '23 at 08:46