Like Djangos rest_framework.JSONRenderer it needs to be instantiated like
json = JSONRenderer().render(serializer.data)
in order to use the render method.
What's the background, that render() is not offered as a static/class method?
Using static/class methods makes it impossible to override/hard to debug to use object specific tools such as adding instance variables if someone requires it.