In Parsoid /transform/wikitext/to/lint endpoint, if I provide just the page title and no revision ID or wikitext body parameter, the endpoint 302 redirects me to the URI with the latest page revision. However, 302 redirects instruct clients to change the request method from POST to GET, while Parsoid doesn't support GET for that endpoint. So the correct way of redirecting would be 307 redirect that doesn't allow the client to change the request method.
Alternatively, Parsoid should support GET for that endpoint, or make the revision parameter required if no body is provided.