How to get fund issue date via Eikon API?

I want to get the fund issue date via Eikon API, but it returns empty, kindly help check if the field "ISSUE_DATE" is correct or not? Thanks.


data, err = ek.get_data(instruments=['LP68728214'], fields=[
"TR.RICCode",
"ISSUE_DATE"
])

Response:

{

"instrument": {

"0": "LP68728214"

},

"ricCode": {

"0": "LP68728214"

},

"issueDate": {

"0": null

}

}


1686037714234.png


Best Answer

  • Jirapongse
    Answer ✓

    @anchu

    Thanks for reaching out to us.

    You can use the TR.FundLaunchDate field.

    df, err = ek.get_data(["LP68728214"],["TR.FundLaunchDate"])
    df

    The output is:

    1686039219066.png

    You can use the Data Item Browser to search for available fields, and parameters.

    I hope that this information is of help.