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

# Get tax payments

> Returns quarterly tax payment history and tracking.



## OpenAPI

````yaml get /v1/businesses/{businessId}/tax-estimates/payments
openapi: 3.0.1
info:
  title: API
  version: latest
servers: []
security:
  - BearerAuth: []
tags: []
externalDocs:
  url: /
paths:
  /v1/businesses/{businessId}/tax-estimates/payments:
    get:
      tags:
        - Tax Estimates
      summary: Get tax payments
      description: Returns quarterly tax payment history and tracking.
      operationId: business.tax-estimates.payments.get
      parameters:
        - name: businessId
          in: path
          description: The UUID of the business
          required: true
          schema:
            type: string
            format: uuid
        - name: year
          in: query
          description: 'The tax year (e.g., 2025). Supported years: 2024-2026.'
          required: true
          schema:
            type: integer
            format: int32
        - name: reporting_basis
          in: query
          description: >-
            The accounting basis for reporting. Defaults to the business's
            default reporting basis, or CASH if not set.
          required: false
          schema:
            type: string
            enum:
              - ACCRUAL
              - CASH
            default: CASH
        - name: full_year_projection
          in: query
          description: >-
            Whether to project income/expenses for the full year based on
            year-to-date data. Only applicable for the current year. Defaults to
            true.
          required: false
          schema:
            type: boolean
            default: false
        - name: Content-Type
          in: header
          description: Content-Type must be set to application/json
          schema:
            type: string
      responses:
        '200':
          description: Tax payments for the specified year
          headers: {}
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiTaxPayments'
        '404':
          description: Business not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
      deprecated: false
components:
  schemas:
    ApiTaxPayments:
      type: object
      properties:
        type:
          type: string
          description: Resource type.
          example: Tax_Payments
        year:
          type: integer
          format: int32
          description: The tax year for these payments.
          example: 2025
        quarters:
          type: array
          items:
            $ref: '#/components/schemas/TaxPaymentQuarter'
          description: Quarterly payment breakdown.
      description: Quarterly tax payment history and tracking.
    ApiError:
      type: object
      properties: {}
      example: ''
      description: ''
    TaxPaymentQuarter:
      type: object
      properties:
        quarter:
          type: integer
          format: int32
          minimum: 1
          maximum: 4
          description: Quarter number (1-4).
        owed_rolled_over_from_previous:
          type: integer
          format: int64
          description: >-
            Amount owed rolled over from previous quarter, in cents. Positive
            means still owed, negative means overpaid.
        owed_this_quarter:
          type: integer
          format: int64
          description: Amount owed this quarter, in cents.
        total_paid:
          type: integer
          format: int64
          description: Total amount paid this quarter, in cents.
        total:
          type: integer
          format: int64
          description: Net balance for the quarter, in cents.
      description: Tax payment information for a single quarter.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````