The carrier programs (products) your brokerage can quote through Hedge
const url = 'https://api.hedgespecialty.com/api/v1/broker/programs?category=instant_quote';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/programs?category=instant_quote' \ --header 'Authorization: Bearer <token>'The same catalog as GET /broker/market-access, flattened to one row
per program with its broker category. instant_quote programs are
quoted live through a carrier API and expose an application question
schema (below) that your own application builder can plug into;
binding programs Hedge quotes for you; specialty programs need
completed ACORDs, program requirements and loss runs. Filters
combine (AND). Read scope is enough.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Canonical line slug or common alias (gl
Responses
Section titled “Responses”Programs, instant-quote first, then by market and name
object
instant_quote: quoted live through a carrier API; your own
application can plug in via the program’s application-schema.
binding: Hedge quotes it for you. specialty: completed
ACORDs, program requirements and loss runs are required.
Canonical line-of-business slugs.
2-letter state codes where the program is available; null means no state restriction.
Your brokerage’s own on/off preference (see GET /broker/market-access).
True when GET /broker/programs/{program_id}/application-schema can serve the question schema.
Example
[ { "program_category": "instant_quote" }]Unknown category