> ## 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.

# Get a labor tax

> Retrieve a Plane-maintained labor tax rule.

### Parameters

<ParamField type="string" path="id" initialValue="ltx_N8qK2pR9tL4m" required>
  The ID of a labor tax.
</ParamField>

### Returns

Returns a [Labor tax object](/reference/labor-taxes/object) if a valid
identifier was provided, and returns an error otherwise.

<ResponseExample>
  ```json Response theme={null}
  {
    "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>
