> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ferofill.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ACORD 126 GL

export const processingNote_0 = "This endpoint is optimized for ACORD 126 General Liability Application forms and will process them faster than the general liability endpoint."

export const templateDescription_0 = "Always returns 'acord_126_gl_2023' or version year variant"

export const extractedFields_0 = "applicant_name, business_address, contact_person, phone_number, email, business_description, years_in_business, number_of_employees, annual_revenue, policy_period_from, policy_period_to, prior_carrier, general_aggregate, products_aggregate, each_occurrence_limit, personal_injury_limit"

export const tableNames_0 = "operations_schedule, location_schedule, coverage_summary, loss_history"

export const successResponse_0 = undefined

export const failedResponse_0 = undefined

<Note>
  {processingNote_0}
</Note>

### Request

<ParamField body="files" type="file[]" required>
  Upload one or more documents for extraction. Supported file formats: pdf, jpeg, png, xlsx, docx, pptx, csv, and txt.
</ParamField>

### Response

All endpoints return a consistent response structure:

<ResponseField name="data" type="array" required>
  Array of extracted document data objects

  <Expandable title="Document Data Object">
    <ResponseField name="template_confidence" type="number">
      Confidence score (0-100) for document template identification
    </ResponseField>

    <ResponseField name="template" type="string">
      {templateDescription_0}
    </ResponseField>

    <ResponseField name="processing_time" type="string">
      Time taken to process the document
    </ResponseField>

    <ResponseField name="start_page" type="number">
      First page number of the document
    </ResponseField>

    <ResponseField name="end_page" type="number">
      Last page number of the document
    </ResponseField>

    <ResponseField name="extracted_fields" type="array">
      Array of extracted field objects. Common fields include: {extractedFields_0}
    </ResponseField>

    <ResponseField name="tables" type="array">
      Array of extracted table objects. Common tables include: {tableNames_0}
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="error" type="string | null">
  Error message if processing failed, null if successful
</ResponseField>

<ResponseExample>
  {successResponse_0}

  {failedResponse_0}
</ResponseExample>
