I'm just trying to lookup item prices using the Ebay API, but whenever I make a basic call
request = {
'keywords': UPC,
}
response = api.execute('findItemsByKeywords', request)
for item in response.reply.searchResult.item:
print(f"Title: {item.title}, Price: {item.sellingStatus.currentPrice.value}")
UPC is the UPC of the item in question, but every time I get the error ebaysdk.exception.ConnectionError: "findItemsByKeywords: Internal Server Error, Domain: CoreRuntime, Severity: Error, errorId: 5014, Error reading from XML stream: Unexpected character 'E' (code 69) expected '='\n at [row,col {unknown-source}]: [1,150]"
Anyone know how to fix?