LSEG Data API Metadata

I want to access the metadata information I can see on workspace for a set of cash prices (image attached).

I'm assuming it's something like:

import lseg.data as ld

import pandas as pd


APP_KEY = os.getenv("LSEG_APP_KEY")

ld.open_session(app_key=APP_KEY)


ric = "SYB-2YNOLAF-C1"fields = [    "TR.CommonName", "TR.AssetCategory", "TR.AssetType", "TR.Currency",    "TR.PermID", "TR.UnderlyingRIC", "TR.Popularity", "TR.DisplayType"]

df = ld.get_data(        universe=[ric],        fields=fields    )

However a lot of the metadata fields are not available (see output below)

Is there a better way of fetching this metadata/is it just not available?

Thank you

image.png image.png

Answers