Documentation - kkemple/awesome-enterprise-web-service GitHub Wiki
Documentation for the API is availble via hapi-swagger. Adding routes to the docs is as easy and adding the api tag to the route.
Example
{
method: 'POST',
path: '/api/healthcheck',
config: {
tags: ['api'],
auth: false,
...
},
}