I am getting "Error message: Failed to fetch" when using the endpoints below. Content Team confirmed that data is available.https://api.refinitiv.com/user-framework/mobile/fund-service/v1/fund/top-holdings/LP40189339https://api.refinitiv.com/user-framework/mobile/overview-service/v1/fund/top-holdings/LP40189339
Hi @Michael Ronald Cortez.Espinosa ,
There seems to be an issue with browser when using this in the API playground. Seems like this RDP endpoint does not correctly implement the OPTIONS request, which is causing it to fail in the browser.
You can however try and get data from this using the following python code:
import http.clientconn = http.client.HTTPSConnection("api.refinitiv.com")payload = ''headers = { 'Authorization': 'Bearer eyJ0eXAiOiJhdCtq....X_tEfBA'}conn.request("GET", "/user-framework/mobile/fund-service/v1/fund/top-holdings/LP40189339", payload, headers)res = conn.getresponse()data = res.read()print(data.decode("utf-8"))
I will raise a service ticket for this issue.
Raised a service ticket #10741457