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

# List labor taxes

> Returns Plane-maintained labor tax rules.

### Parameters

<ParamField type="string" path="country">
  Two-letter country code.
</ParamField>

<ParamField type="string" path="subdivision">
  State, province, or subdivision code.
</ParamField>

<ParamField type="string" path="code">
  Labor tax code.
</ParamField>

<ParamField type="string" path="category">
  Labor tax category.
</ParamField>

<ParamField type="string" path="classification">
  Labor tax classification.
</ParamField>

<ParamField type="string" path="on">
  Effective date filter. Returns rules active on this date.
</ParamField>

<ParamField type="number" path="limit">
  A limit on the number of objects to be returned. Limit can range between 1 and 100.
</ParamField>

<ParamField type="string" path="starting_after">
  A cursor for use in pagination.
</ParamField>

<ParamField type="string" path="ending_before">
  A cursor for use in pagination.
</ParamField>

### Returns

A dictionary with a `labor_taxes` property that contains an array of labor tax
objects.

<ResponseExample>
  ```json Response theme={null}
  {
    "labor_taxes": [
      {
        "id": "ltx_N8qK2pR9tL4m",
        "object": "labor.tax",
        "jurisdiction": { "country": "KR" },
        "code": "occupational_accident_insurance",
        "name": "Occupational Accident Insurance",
        "category": "occupational_risk",
        "classification": "employer_contribution",
        "starts": null,
        "ends": null,
        "employer": {
          "base": "gross_earnings",
          "label": "7.25%",
          "parameters": {
            "rate": "0.0725"
          },
          "formula": "gross_earnings * rate"
        },
        "employee": null,
        "created": "2026-05-27T12:00:00Z",
        "updated": "2026-05-27T12:00:00Z"
      }
    ]
  }
  ```
</ResponseExample>
