``` go type req struct { PerPage string `query:"per_page"` APIKey string `query:"key"` } // an alternative to render.Bind to check query params and convert into req ```