For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 1 1 1

iMap data through Eikon API

Hi,


Can we fetch iMap data through Eikon API?

reuters://REALTIME/verb=Eikon Explorer App/url=cpurl://apps.cp./Apps/iMap?List%2F0_assetConfigurations=C%7DKL7309471757_C%7DKL7309482782_C%7DKL7309483166_C%7DKL7309484287_C%7DKL7309485339_C%7DKL7309486361_C%7DKL7309489813_C%7DKL7309489927_C%7DKL7309490947_C%7DKL7309491316_C%7DKL7309492844_C%7DKL7309493491_C%7DKL7309494342_C%7DKL7309494344_C%7DKL7309494844_C%7DKL7309495991_C%7DKL7309502802_C%7DKL7309638810_C%7DKL7309634855_C%7DKL7309636815_C%7DKL7309844081_C%7DKL7309836730_C%7DKL7309844075_C%7DKL7309844074_C%7DKL7309844121_C%7DKL7309843327_C%7DKL7309843509_C%7DKL7309851285_C%7DKL7309865586_C%7DKL7309849075_C%7DKL7309843330_C%7DKL7309911285_C%7DKL7309912026_C%7DBG7309900471_C%7DKL7309900133_C%7DKL7309900138_C%7DKL7309900787_C%7DKL7309912028_C%7DKL7309913811_C%7DKL7309914092_C%7DKL7309932842_C%7DKL7309923213_C%7DKL7309944897_C%7DKL7309944896_C%7DKL7309983067_C%7DKL7309951001_C%7DKL7309983076

Thanks,

Sree

eikon#technology#content
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

Upvote
Accepted
8.4k 13 6 9

@sreedhanya.kavunkara So some information from the imap app is available - generally the data is presented as layers - so in terms of physical assets we have full coverage eg mines, refineries, vessels etc - each having their own datamodel - you can check these using the Data Item Browser app (type DIB into Eikon search bar) - see below:

1674647285133.png

Then you can use the RD library or Eikon Data API library to retrieve the data - to find out various physical asset RICs you can use our new RD library search templates as follows:

import refinitiv.data as rd
from physical_assets_map import PhysicalAssetsMap
rd.load_config("search-templates.config.json")
mines = rd.discovery.search_templates["Mines"]
df = mines.search(commodity="Gold", region="Australia")

PhysicalAssetsMap().plot(df).show()
display(df)

1674647905489.png

Once you have your list of RICs you can then request additional data fields using another API call etc. I hope this can help.


1674647285133.png (424.8 KiB)
1674647905489.png (422.0 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.