Which api/endpoint does the fundamental and reference module from the Content layer of Refinitiv Dat

I have been trying to find the rate limits of the fundamental and reference module from the Content layer of Refinitiv Data Platform Library for Python and was wondering what API does it use so that I can find out more about it in the playground API. Thanks!

Best Answer

  • Jirapongse
    Answer ✓

    @feldman.lee

    Thank you for reaching out to us.

    It could be the datagrid endpoint in RDP.

    You can also enable logging in the RD library to check for the endpoints by using the following code.

    config = rd.get_config()
    config.set_param("logs.transports.file.enabled", True)
    config.set_param("logs.transports.file.name", "refinitiv-data-lib.log")
    config.set_param("logs.level", "debug")
    rd.open_session()

    The refiniti-data-lib.log file will be created.