public async Task <ActionResult <MatchResponse> > FindMatches(MatchRequest request)
        {
            var matches = await _matchService.FindMatchesAsync(request.Text, request.Subtext);

            return(new MatchResponse {
                Text = request.Text, Subtext = request.Subtext, Matches = matches.ToArray()
            });
        }