Skip to main content
GET
/
v1
/
labor
/
taxes
/
{id}
Get a labor tax
curl --request GET \
  --url https://api.plane.com/v1/labor/taxes/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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"
}

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.

Parameters

id
string
required
The ID of a labor tax.

Returns

Returns a Labor tax object if a valid identifier was provided, and returns an error otherwise.
{
  "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"
}