Home > Blockchain >  How to generate documentation like Stripe API
How to generate documentation like Stripe API

Time:11-15

I have a Sprint boot based Java server that exposes REST endpoints. I need to create documentation for external customers on the endpoints. I'm not a fan of the Swagger generated docs. I'd like to be able to generate documentation like the Stripe API's : https://stripe.com/docs/api

Do you know what tool can be used to generate Stripe API like documentation?

CodePudding user response:

use slate, its inspired to Stripe and paypal

https://github.com/slatedocs/slate

CodePudding user response:

Stripe apparently uses a tool they built called Markdoc for their documentation. There's a blog post on Stripe's website about how they built it, and Markdoc is available to the public.

There are other automated API documentation tools available, too. Swagger is one example, and Postman is another.

  • Related