404 error when pulling I/B/E/S data

Hi, I am trying to get I/B/E/S data through the refinitiv API with python but I keep on getting a 404 error. I use python 3.7 and this is the endpoint I use:


https://api.refinitiv.com/data/estimates/beta1/viewsummary/annual


My authorizations are fine, I run other code examples and I get the data correctly. Also I am using IBM.N as universe and basic as package. This is the error I get:

Unable to get data. Code 404, Message: 404 page not found

Any idea of what I am doing wrong?

Best Answer

  • umer.nalla
    Answer ✓

    Hi @sc11214

    Thanks for sharing - there is a typo in your code

    As per my above post, it should be

    endpoint_URL = "/view-summary/annual"

    note the '-' between view and summary

Answers