Ask HN: How do you write documentation for your public APIs?
3 comments
Wordnik's swagger comes to mind
https://developers.helloreverb.com/swagger/
We just launched our own api ( handwritten with bootstrap,css )
check it out at http://appetite.io/docs
~B
https://developers.helloreverb.com/swagger/
We just launched our own api ( handwritten with bootstrap,css )
check it out at http://appetite.io/docs
~B
+1 for Swagger.
I'm predominantly .Net, and Swagger support for the ServiceStack[1] libraries has been very handy!
[1] http://servicestack.net/
I'm predominantly .Net, and Swagger support for the ServiceStack[1] libraries has been very handy!
[1] http://servicestack.net/
I really like using Restdown https://github.com/trentm/restdown
It's markdown with a few more conventions. Really handy.
It's markdown with a few more conventions. Really handy.
Python has Sphinx, used by almost every big package.
Thanks!