Eikon Api code error 404

function getTeslaPrice() {
// Eikon API의 올바른 엔드포인트 URL을 확인하세요.
const url = "https://api.refinitiv.com/marketdata/price"; // 예시 URL, 실제 URL로 교체 필요
const options = {
method: "GET",
headers: {
"Authorization": "Bearer 22a107f781ba4bffa71d80362e8e5c188f1f1d49", // API 키를 Authorization 헤더에 포함
"Content-Type": "application/json"
}
// payload: JSON.stringify({ "rics": ["TSLA.O"] }) // 필요 시 요청 본문 추가
};
try {
const response = UrlFetchApp.fetch(url, options);
const data = JSON.parse(response.getContentText());
// Eikon API의 데이터 구조에 맞게 수정하세요
const teslaPrice = data.price; // 실제 데이터 구조에 맞게 조정 필요
return teslaPrice;
} catch (e) {
Logger.log("Error fetching data: " + e.message);
return "Error";
}
}
function updateTeslaPriceInSheet() {
const price = getTeslaPrice();
const sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("고유계정 시트");
if (sheet) {
sheet.getRange("C141").setValue(price);
} else {
Logger.log("Sheet named '고유계정 시트' not found.");
}
}
I received an Error 404 when I used the code with Google Apps Script in Google Sheets. Could you please tell me what might be wrong with the code? I want to retrieve the current Tesla stock price. If the endpoint code is incorrect, could you provide the correct endpoint? Additionally, please provide the Python library for this task as well. Your help is urgently needed. Thank you.
Best Answer
-
Hello @hjkim
According to the API endpoint "https://api.refinitiv.com", I am assuming that you are connecting to the Delivery Platform APIs (RDP - formerly known as Refinitiv Data Platform) HTTP web API.
I checked the RDP API Playground page, I cannot find "https://api.refinitiv.com/marketdata/price" endpoint on the website, that is why you get the HTTP 404 error message.
I am not sure what kind of data that you need, but the RDP has the /data/pricing/snapshots/v1/ endpoint that might suites your needs.
I strongly suggest you contact your LSEG representative or Account Manager to help you verify which API endpoint that matches your requirements and assigns the API permission for you.
About the Python library, the RDP is the HTTP REST API, so any Python HTTP libraries such as requests or http.client can get the job done.
Example with requests
url = 'https://api.refinitiv.com/data/pricing/snapshots/v1/'
headers = {
'Accept': 'application/json',
'Authorization': f'Bearer {access_token}'
}
payload = {
'universe': universe,
'fields': fields
}
try:
response = requests.get(url, headers=headers, params = payload, timeout=10)
except requests.exceptions.RequestException as exp:
print(f'Caught exception: {exp}')
return None
if response.status_code == 200: # HTTP Status 'OK'
print('Receive Data from RDP APIs')
print(response.json())
else:
print(f'RDP APIs: data request failure: {response.status_code} {response.reason}')
print(f'Text: {response.text}')
raise requests.exceptions.HTTPError(f'data request failure: {response.status_code} - {response.text} ', response = response )0
Categories
- All Categories
- 3 Polls
- 6 AHS
- 36 Alpha
- 166 App Studio
- 6 Block Chain
- 4 Bot Platform
- 18 Connected Risk APIs
- 47 Data Fusion
- 34 Data Model Discovery
- 685 Datastream
- 1.4K DSS
- 616 Eikon COM
- 5.2K Eikon Data APIs
- 10 Electronic Trading
- Generic FIX
- 7 Local Bank Node API
- 3 Trading API
- 2.9K Elektron
- 1.4K EMA
- 252 ETA
- 556 WebSocket API
- 38 FX Venues
- 14 FX Market Data
- 1 FX Post Trade
- 1 FX Trading - Matching
- 12 FX Trading – RFQ Maker
- 5 Intelligent Tagging
- 2 Legal One
- 23 Messenger Bot
- 3 Messenger Side by Side
- 9 ONESOURCE
- 7 Indirect Tax
- 60 Open Calais
- 275 Open PermID
- 44 Entity Search
- 2 Org ID
- 1 PAM
- PAM - Logging
- 6 Product Insight
- Project Tracking
- ProView
- ProView Internal
- 22 RDMS
- 1.9K Refinitiv Data Platform
- 652 Refinitiv Data Platform Libraries
- 4 LSEG Due Diligence
- LSEG Due Diligence Portal API
- 4 Refinitiv Due Dilligence Centre
- Rose's Space
- 1.2K Screening
- 18 Qual-ID API
- 13 Screening Deployed
- 23 Screening Online
- 12 World-Check Customer Risk Screener
- 1K World-Check One
- 46 World-Check One Zero Footprint
- 45 Side by Side Integration API
- 2 Test Space
- 3 Thomson One Smart
- 10 TR Knowledge Graph
- 151 Transactions
- 143 REDI API
- 1.8K TREP APIs
- 4 CAT
- 27 DACS Station
- 121 Open DACS
- 1.1K RFA
- 104 UPA
- 193 TREP Infrastructure
- 228 TRKD
- 917 TRTH
- 5 Velocity Analytics
- 9 Wealth Management Web Services
- 90 Workspace SDK
- 11 Element Framework
- 5 Grid
- 18 World-Check Data File
- 1 Yield Book Analytics
- 46 中文论坛