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

# Get Carrier Insurance

> Active insurance policies with coverage details

Returns active insurance policies with coverage details.

<ParamField path="dot_number" type="string" required>
  The carrier's USDOT number
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.dotlookup.dev/v1/carriers/2233855/insurance
  ```

  ```python Python theme={null}
  import requests

  resp = requests.get("https://api.dotlookup.dev/v1/carriers/2233855/insurance")
  insurance = resp.json()
  ```

  ```javascript JavaScript theme={null}
  const resp = await fetch("https://api.dotlookup.dev/v1/carriers/2233855/insurance");
  const insurance = await resp.json();
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "dot_number": "2233855",
    "legal_name": "ACME TRUCKING LLC",
    "policies": [
      {
        "policy_type": "BIPD",
        "insurer_name": "NATIONAL INTERSTATE INS CO",
        "policy_number": "BCA-12345",
        "coverage_amount": 1000000,
        "effective_date": "2024-01-15T00:00:00Z",
        "expiration_date": "2025-01-15T00:00:00Z",
        "form_code": "BMC91X"
      }
    ]
  }
  ```
</ResponseExample>
