List brokerages.
GET
/api/brokerages
const url = 'https://api.tradr.cloud/api/brokerages';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.tradr.cloud/api/brokeragesAuthed. Returns the user’s own brokerages plus the built-in system ones, each with its fee schedule. A brokerage is a name and a fee schedule that accounts and positions reference so commissions are computed consistently. Tradr does not connect to any broker; nothing here holds credentials.
Responses
Section titled “Responses”The brokerages visible to this user.
No valid session.