Create a submission
const url = 'https://api.hedgespecialty.com/api/v1/broker/submissions';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"applicant":{"insured_name":"example","dba_name":"example","entity_type":"example","fein_or_ssn":"example","nature_of_business":"example","date_business_started":"2026-04-15","business_phone":"example","business_email":"example","website":"example","contact_first_name":"example","contact_last_name":"example","contact_title":"example","contact_phone":"example","contact_email":"example","naics":"example","sic":"example","gl_code":"example","mailing_address":{"line1":"example","line2":"example","city":"example","county":"example","state":"example","zip":"example","zip4":"example","country":"US"}},"narrative":"example","lines_of_business":["example"],"effective_date":"2026-04-15","primary_state":"example","producer_email":"example","insured_id":"2489E9AD-2EE2-8E00-8EC9-32D5F69181C0","locations":[{"location_number":1,"address":{"line1":"example","line2":"example","city":"example","county":"example","state":"example","zip":"example","zip4":"example","country":"US"},"description_of_operations":"example","employees_full_time":1,"employees_part_time":1,"annual_revenue_at_location":1}],"requested_coverages":["example"],"property_tiv_total":1,"auto_vehicle_count":1,"wc_total_annual_payroll":1,"prior_carriers":[{"coverage_category":"example","carrier_name":"example","policy_number":"example","effective_date":"2026-04-15","expiration_date":"2026-04-15"}],"line_target_premiums":{"additionalProperty":1},"structure_to_target":false,"hold":false}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.hedgespecialty.com/api/v1/broker/submissions \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "applicant": { "insured_name": "example", "dba_name": "example", "entity_type": "example", "fein_or_ssn": "example", "nature_of_business": "example", "date_business_started": "2026-04-15", "business_phone": "example", "business_email": "example", "website": "example", "contact_first_name": "example", "contact_last_name": "example", "contact_title": "example", "contact_phone": "example", "contact_email": "example", "naics": "example", "sic": "example", "gl_code": "example", "mailing_address": { "line1": "example", "line2": "example", "city": "example", "county": "example", "state": "example", "zip": "example", "zip4": "example", "country": "US" } }, "narrative": "example", "lines_of_business": [ "example" ], "effective_date": "2026-04-15", "primary_state": "example", "producer_email": "example", "insured_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "locations": [ { "location_number": 1, "address": { "line1": "example", "line2": "example", "city": "example", "county": "example", "state": "example", "zip": "example", "zip4": "example", "country": "US" }, "description_of_operations": "example", "employees_full_time": 1, "employees_part_time": 1, "annual_revenue_at_location": 1 } ], "requested_coverages": [ "example" ], "property_tiv_total": 1, "auto_vehicle_count": 1, "wc_total_annual_payroll": 1, "prior_carriers": [ { "coverage_category": "example", "carrier_name": "example", "policy_number": "example", "effective_date": "2026-04-15", "expiration_date": "2026-04-15" } ], "line_target_premiums": { "additionalProperty": 1 }, "structure_to_target": false, "hold": false }'Creates the submission and starts the run: appetite match, the
structured clearance email to the producer, lanes opened, the
instant-quote markets quoted on recorded favorable assumptions.
Documents uploaded afterwards flow into the open lanes. Pass
hold: true to defer the run until finalize; an
expected_document_sha256s manifest also holds (you declared
originals are still coming).
The response’s marketing_status says which happened (matching or
awaiting_finalization) and next_step names the call to make.
Supports an Idempotency-Key header: a retried create with the same
key within 24h replays the original response instead of creating a
duplicate. A concurrent duplicate returns 409, retry shortly.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Header Parameters
Section titled “Header Parameters”Request Bodyrequired
Section titled “Request Bodyrequired”object
object
Legal entity type, e.g. llc, corporation, sole_proprietor.
FEIN, or SSN for a sole proprietor.
The producer’s email. Strongly recommended: Hedge emails the clearance (every market being tried), any questions, and quotes here; the same thread an email broker gets.
Line1, city, state and zip are required together.
object
Operations description of the risk, what the business does, size, anything an underwriter should know. Required; appetite matching depends on it.
Canonical slugs (e.g. commercial_general_liability) or common aliases (gl, wc).
Primary risk state, 2-letter US code (normalized to uppercase). When the applicant mailing address also carries a state the two must agree: the request 422s on a conflict, with a message that says exactly what to fix. Omit it to use the mailing address state.
REQUIRED when authenticating with a machine credential, the active portal user this submission is attributed to.
Optional id of an existing insured from GET /broker/insureds; links the new submission to that client’s account (repeat business, a new line for an existing client). Must belong to your brokerage; an unknown or foreign id returns 404.
Risk locations (ACORD 125 premises). Location numbers must be unique.
object
Unique per submission.
Line1, city, state and zip are required together.
object
Explicit narrow coverage intent as canonical slugs (e.g. auto_physical_damage, motor_truck_cargo). Omit when unstated; an empty list means the broker explicitly selected none.
Total insured property value, whole dollars.
Total annual payroll, whole dollars.
Expiring or prior carriers per line; drives loss-run requests.
object
Canonical line slug or common alias.
Broker-stated target annual premium per line slug, whole dollars. Non-positive values are dropped.
object
Ask Hedge to structure options (limits, deductibles) to hit the target premiums.
Defer the run. false (default) starts marketing as soon as the
create commits, appetite match, clearance email to the
producer, lanes opened, instant-quote markets quoted. true
holds the draft until POST /broker/submissions/{id}/finalize
releases it (attach documents and answer requirements first).
Responses
Section titled “Responses”Created
object
matching when the run started on create; awaiting_finalization
when held (call finalize to release).
The call to make next, e.g. GET /broker/submissions/{id}/markets or POST /broker/submissions/{id}/finalize.
Non-fatal notices about an already-created submission (e.g. a background enqueue that needs attention).
Example
{ "marketing_status": "matching"}Same Idempotency-Key already in flight
Validation error (message says exactly what to fix)
Daily create limit reached