type request { Id string `path:"id"` } type response { Res int `json:"res"` } service db_api { @handler apiTest get /db/api/api_test/:id (request) returns (response) }