Remove the Unusual Whales market-data key (REQ-6.2).
DELETE
/api/advisor/market-data-key
const url = 'https://api.tradr.cloud/api/advisor/market-data-key';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://api.tradr.cloud/api/advisor/market-data-keyHard-deletes the stored key for the authenticated user. The ciphertext is gone from the database; the plaintext was never persisted.
Responses
Section titled “Responses”Deleted.
No market-data key configured.