# Retrieve a tax rate Retrieves a specific tax rate by its unique identifier. Endpoint: GET /taxRates/{id} Version: 1.0 ## Path parameters: - `id` (string, required) Unique identifier of the tax rate Example: "txr_inQ4hbLZPyljDXFRCEnjtEqK" ## Header parameters: - `cc-api-key` (string, required) Chaching API Key ## Response 200 fields (application/json): - `id` (string, required) Unique identifier for the object. Example: "txr_inQ4hbLZPyljDXFRCEnjtEqK" - `object` (string, required) String representing the object’s type. Enum: "tax_rate" - `active` (boolean, required) Indicates whether the object is active. Example: true - `country` (string,null) Two-letter ISO country code representing the country for the tax rate (only US is supported) Enum: "US" - `created` (number, required) Timestamp (in seconds since Unix epoch) of when the object was created. Example: 1678833149 - `description` (string,null) An arbitrary string attached to the object. Often useful for displaying to users. Example: "State sales tax" - `display_name` (string, required) The display name of the tax rate, e.g., "Sales Tax". Example: "Sales Tax" - `inclusive` (boolean, required) Specifies if the tax is inclusive (included in price) or exclusive (added on top). Example: true - `percentage` (number, required) The tax percentage rate, e.g., 7.25 for 7.25%. Example: 7.25 - `tax_type` (string, required) Type of the tax rate Enum: "Sales tax", "VAT", "GST", "Custom" ## Response 400 fields