Is there an API to fetch the Foreign Exchange Data history

It seems that we have, but I can't get any information from this page FX Pricing Data | Refinitiv .

Best Answer

  • @shibo.yan

    That page contains a list of products and APIs that can be used to access the data set.

    1663126395800.png

    For example, you can use Eikon Data API to receive daily historical data of JPY=.

    df1 = ek.get_timeseries('JPY=',
                interval   = 'daily',
                count=10)
    df1

    1663126586434.png