Problem with making extraction from DSS using REST API with Python

Hi, I am having issues when trying to retrieve output using the following code. It looks like the token is retrieved but after that the extraction output location is not identified. The error I get is:
Error: 400 Client Error: Bad Request for url: https://selectapi.datascope.refinitiv.com/RestApi/v1/Extractions/ExtractRaw
Here is the code. Many thanks, in advance.
import requests
import json
USERNAME = 'myUsername'
PASSWORD = 'myPassword'
DSS_BASE_URL = 'https://selectapi.datascope.refinitiv.com/RestApi/v1'
#DSS_BASE_URL = 'https://selectapi.datascope.refinitiv.com/DatascopeApi/v1'
def get_dss_token():
url = f"{DSS_BASE_URL}/Authentication/RequestToken"
headers = {'Content-Type': 'application/json'}
data = {
"Credentials": {
"Username": USERNAME,
"Password": PASSWORD
}
}
response = requests.post(url, headers=headers, json=data)
response.raise_for_status()
return response.json()['value']
def get_bond_info_by_isin(token, isin):
#url = f"{DSS_BASE_URL}/Extractions/ExtractWithNotes"
url = f"{DSS_BASE_URL}/Extractions/ExtractRaw"#Main execution
headers = {
'Content-Type': 'application/json',
'Prefer': 'respond-async',
'Authorization': f'Token {token}'
}
payload = {
"ExtractionRequest": {
"@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.InstrumentExtractionRequest",
"ContentFieldNames": [
"RDMP.MaturityDate", # Maturity Date
"RDMP.Coupon", # Coupon Rate
"TR.TRBCIndustry", # Industry (issuer)
"TR.HeadquartersCountry" # Country (issuer)
],
"IdentifierList": {
"@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
"InstrumentIdentifiers": [
{"Identifier": isin, "IdentifierType": "ISIN"}
],
"ValidationOptions": None,
"UseUserPreferencesForValidationOptions": False
},
"Condition": None
}
}
response = requests.post(url, headers=headers, json=payload)
response.raise_for_status()
results = response.json()
# Parse and print result
for row in results['Contents'][0]['Rows']:
maturity = row['Cells'][0]['Value']
coupon = row['Cells'][1]['Value']
industry = row['Cells'][2]['Value']
country = row['Cells'][3]['Value']
print(f"ISIN: {isin}")
print(f" Maturity Date: {maturity}")
print(f" Coupon Rate: {coupon}")
print(f" Industry: {industry}")
print(f" Country: {country}")
if name == "main":
isin = "US91282CAV37" # Example: US Treasury Bond
try:
token = get_dss_token()
get_bond_info_by_isin(token, isin)
except Exception as e:
print("Error:", e)
Answers
-
Thank you for reaching out to us.
According to the request message, you are using the InstrumentExtractionRequest request. I couldn't find it in the list of available extraction requests.
You can check it in the REST API Reference Tree.
You can refer to the following resources:
- LSEG DataScope Select Data Content Guide provides definitions of all of the data fields available in LSEG DataScope Select.
- LSEG DataScope Select - REST API Tutorials
Otherwise, you can contact the DSS support team directly via MyAccount and ask for report templates and content fields that can provide the required data.
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
- 615 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 中文论坛