The following lines of code in Python
r = requests.get("https://paper-api.alpaca.markets/v2/assets/SGAM",headers={"APCA-API-KEY-ID":"KEYID","APCA-API-SECRET-KEY":"SECRET"})
print (r.text)
returns
"id":"bdc9ac8c-2131-4b39-896b-483ae9586b28","class":"us_equity","exchange":"NASDAQ","symbol":"SGAM","name":"Seaport Global Acquisition Corp. Class A Common Stock","status":"active","tradable":true,"marginable":false,"shortable":false,"easy_to_borrow":false}
It shows the stock status as “ACTIVE” but its not active actually – https://www.otcmarkets.com/stock/SGAM/news/story?e&id=1761518.
Please make the appropriate changes.