The markets this brokerage receives quotes from, with per-program and per-line toggles
GET
/broker/market-access
const url = 'https://api.hedgespecialty.com/api/v1/broker/market-access';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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.hedgespecialty.com/api/v1/broker/market-access \ --header 'Authorization: Bearer <token>'One row per market Hedge has enabled for your brokerage, each with its per-program breakdown and each program’s line switches. A toggle that is off stops NEW submissions from being marketed there; in-flight submissions are unaffected. Readable by any signed-in broker user.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Rows of {market_id, name, enabled, programs: [{program_id, name, description, enabled, lines: [{slug, label, enabled}]}]}