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

# Generate a card balance account statement

> Generates a statement for a card balance account over a period. Dates are interpreted as UTC day boundaries and all timestamps in the response are in UTC. Runs a fresh provider sync inline so the statement reflects the latest activity.



## OpenAPI

````yaml /openapi-public.json get /v1/card-balance-accounts/{accountId}/statement
openapi: 3.0.1
info:
  title: Light API
  version: 1.0.0
servers: []
security:
  - apiKeyAuth: []
  - bearerAuth: []
paths:
  /v1/card-balance-accounts/{accountId}/statement:
    get:
      tags:
        - v1 - Card Balance Accounts
      summary: Generate a card balance account statement
      description: >-
        Generates a statement for a card balance account over a period. Dates
        are interpreted as UTC day boundaries and all timestamps in the response
        are in UTC. Runs a fresh provider sync inline so the statement reflects
        the latest activity.
      operationId: generateCardBalanceAccountStatement
      parameters:
        - name: accountId
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: from
          in: query
          description: >-
            Start of the statement period, inclusive. A UTC calendar date in
            `YYYY-MM-DD` format.
          schema:
            type: string
            format: date
            example: '2026-01-01'
        - name: to
          in: query
          description: >-
            End of the statement period. A UTC calendar date in `YYYY-MM-DD`
            format; must be after `from`.
          schema:
            type: string
            format: date
            example: '2026-01-31'
      responses:
        default:
          description: default response
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: >-
                  #/components/schemas/ExternalCardBalanceAccountStatementV1Model
components:
  schemas:
    ExternalCardBalanceAccountStatementV1Model:
      type: object
      properties:
        balanceAccountId:
          type: string
          format: uuid
        currency:
          type: string
          example: USD
        periodStart:
          type: string
          format: date-time
        periodEnd:
          type: string
          format: date-time
        openingBalance:
          type: integer
          format: int64
        closingBalance:
          type: integer
          format: int64
        transactions:
          type: array
          items:
            $ref: >-
              #/components/schemas/ExternalCardBalanceAccountStatementLineV1Model
        generatedAt:
          type: string
          format: date-time
    ExternalCardBalanceAccountStatementLineV1Model:
      type: object
      properties:
        providerId:
          type: string
        direction:
          type: string
          description: >-
            ⚠️ This enum is not exhaustive; new values may be added in the
            future.
          enum:
            - DEBIT
            - CREDIT
        amount:
          type: integer
          format: int64
        runningBalance:
          type: integer
          format: int64
        bookedAt:
          type: string
          format: date-time
        valuedAt:
          type: string
          format: date-time
        description:
          type: string
          nullable: true
        reference:
          type: string
          nullable: true
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      description: >-
        Basic authentication header of the form **Basic** **<api_key>**, where
        **<api_key>** is your api key.
      name: Authorization
      in: header
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````