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

# Retrieves the tax rate details.



## OpenAPI

````yaml api-reference/openapi.json get /api/tax-rates/{id}
openapi: 3.0.0
info:
  title: Bigcapital
  description: Financial accounting software
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/tax-rates/{id}:
    get:
      tags:
        - Tax Rates
      summary: Retrieves the tax rate details.
      operationId: TaxRatesController_getTaxRate
      parameters:
        - name: Authorization
          in: header
          description: >-
            Value must be 'Bearer <token>' where <token> is an API key prefixed
            with 'bc_' or a JWT token.
          required: true
          schema:
            type: string
            example: Bearer bc_1234567890abcdef
        - name: organization-id
          in: header
          description: >-
            Required if Authorization is a JWT token. The organization ID to
            operate within.
          required: true
          schema:
            type: string
        - name: id
          required: true
          in: path
          schema:
            type: number
      responses:
        '200':
          description: The tax rate details have been successfully retrieved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaxRateResponseDto'
components:
  schemas:
    TaxRateResponseDto:
      type: object
      properties:
        id:
          type: number
          description: The unique identifier of the tax rate
          example: 1
        name:
          type: string
          description: The name of the tax rate
          example: VAT
        nameFormatted:
          type: string
          description: The formatted name of the tax rate including the rate percentage
          example: VAT [10%]
        code:
          type: string
          description: The code of the tax rate
          example: VAT
        rate:
          type: number
          description: The rate of the tax rate as a decimal number
          example: 10
        rateFormatted:
          type: string
          description: The formatted rate of the tax rate with percentage symbol
          example: 10%
        description:
          type: string
          description: The description of the tax rate
          example: Value Added Tax
        isNonRecoverable:
          type: boolean
          description: Whether the tax is non-recoverable
          example: false
        isCompound:
          type: boolean
          description: Whether the tax is compound
          example: false
        active:
          type: boolean
          description: Whether the tax rate is active
          example: true
        createdAt:
          format: date-time
          type: string
          description: The date when the tax rate was created
          example: '2024-03-20T10:00:00Z'
        updatedAt:
          format: date-time
          type: string
          description: The date when the tax rate was last updated
          example: '2024-03-20T10:00:00Z'
      required:
        - id
        - name
        - nameFormatted
        - code
        - rate
        - rateFormatted
        - isNonRecoverable
        - isCompound
        - active
        - createdAt
        - updatedAt

````