{ "routes": [ { "title": "Root, show all available routes", "verb": "GET", "endpoint": "/" }, { "title": "Get the API status (running, version, ...)", "verb": "GET", "endpoint": "/api/status" }, { "title": "Query some API resource using given method and params", "verb": "GET", "endpoint": "/api/query/:method", "query": "params={...}" }, { "title": "Mutate some API resource using given method and params", "verb": "POST", "endpoint": "/api/mutation/:method", "body": "params={...}" } ] }