I'm trying to get data in the Eikon api in Python.
i run the following code:
import eikon as ek
API_KEY = "my_api_generated_from_eikon"
ek.set_app_key(API_KEY)
df = ek.get_timeseries(["MSFT.O"], start_date="2023-01-01", end_date="2023-01-10")
but i get the following error:
2023-11-27 13:10:29,087 P[12100] [MainThread 20108] Error code 404 | Client Error: <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Cannot POST /api/v1/data</pre>
</body>
</html>
I tried going into the troubleshooting section, and went into http://localhost:9000/ping?all
but could not find any {"path":"api"}
also, i don't get any response from: http://localhost:9060/api/status
What is the problem?