Fetch Tax

Retrieve details for a specific tax configuration by its ID.

Endpoint

GET /api/taxes/{tax_id}

Path Parameters

ParameterTypeRequiredDescription
tax_idstringYesThe unique identifier for the tax

Response

Returns the tax object.
{
  "id": "tax_123456789",
  "name": "VAT 20%",
  "rate": 20.0,
  "type": "VAT",
  "country": "GB",
  "region": null,
  "created_at": "2023-01-01T00:00:00Z"
}