Look at the doc of sf::RenderTexture: there you will find getTexture() which return a sf::Texture. Then look at the doc of sf::Texture and there you will find a function copyToImage(). And the docs of sf::Image contains getPixel()
auto image = renderTexture.getTexture().copyToImage();
auto color = image.getPixel(1,1);
AlexAUT