Skip to content

Query Params

Query Params can be set per request:

Per Request

httpc := httpr.NewClient()
resp, err := httpc.Get(context.Background(), "https://hehe.gov",
httpr.QueryParam("page", "3"),
httpr.QueryParam("limit", "10"),
)