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

# Get Report API

> Retrieve a single Breezing crypto accounting report by ID to inspect status, progress, date range, wallets, tokens, and chains.



## OpenAPI

````yaml GET /reports/{id}
openapi: 3.1.0
info:
  title: Breezing Public API
  version: 1.0.0
  description: >-
    Crypto accounting API for programmatic access and AI agents. Authenticate
    with an API key using the Authorization header: `Bearer brz_...`
servers:
  - url: https://api.breezing.io/v1
security:
  - BearerAuth: []
paths:
  /reports/{id}:
    get:
      tags:
        - Reports
      summary: Get a single report
      description: >-
        Get a single report by ID. Use the `status` field to know if details are
        ready: only "done" reports have populated detail rows (GET
        /reports/{id}/details).
      parameters:
        - schema:
            type: string
            description: Report ID
            example: '1'
          required: true
          description: Report ID
          name: id
          in: path
        - schema:
            type: string
            description: >-
              Organization ID. Use GET /v1/companies to discover available
              org/company pairs.
            example: '1'
          required: true
          description: >-
            Organization ID. Use GET /v1/companies to discover available
            org/company pairs.
          name: orgId
          in: query
        - schema:
            type: string
            description: >-
              Company ID. Use GET /v1/companies to discover available companies
              and their access levels.
            example: '1'
          required: true
          description: >-
            Company ID. Use GET /v1/companies to discover available companies
            and their access levels.
          name: companyId
          in: query
      responses:
        '200':
          description: Report retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    $ref: '#/components/schemas/Report'
                required:
                  - success
                  - data
        '400':
          description: Invalid report ID
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '403':
          description: >-
            API key has no access to this company, has read-only access where
            write was required, or the company subscription is inactive
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '404':
          description: Report not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
      security:
        - BearerAuth: []
components:
  schemas:
    Report:
      type: object
      properties:
        id:
          type: number
        name:
          type: string
        description:
          type: string
          nullable: true
        type:
          type: string
          description: >-
            Report type: "token" (NGL per token), "account" (balance sheet by GL
            account), or "explorerBalances" (token balances vs on-chain explorer
            reconciliation).
        status:
          type: string
          description: >-
            Lifecycle: "pending", "progress", "done", "failed". Poll until
            "done" before reading details.
        progress:
          type: number
        count:
          type: number
        dateFrom:
          type: number
          description: Period start (unix ms)
        dateTo:
          type: number
          description: Period end (unix ms)
        chains:
          type: array
          nullable: true
          items:
            type: string
        wallets:
          type: array
          nullable: true
          items:
            type: number
        tokens:
          type: array
          nullable: true
          items:
            type: string
        isAllChainsSelected:
          type: boolean
          nullable: true
        isAllWalletsSelected:
          type: boolean
          nullable: true
        isPerWallet:
          type: boolean
        includeSlippage:
          type: boolean
          nullable: true
        orgId:
          type: number
        companyId:
          type: number
        createdAt:
          type: number
        updatedAt:
          type: number
      required:
        - id
        - name
        - description
        - type
        - status
        - progress
        - count
        - dateFrom
        - dateTo
        - chains
        - wallets
        - tokens
        - isAllChainsSelected
        - isAllWalletsSelected
        - isPerWallet
        - includeSlippage
        - orgId
        - companyId
        - createdAt
        - updatedAt

````