> ## 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.

# List Reports API

> Retrieve Breezing crypto accounting reports with cursor pagination, status, type, and progress to monitor token, account, and balance reports.



## OpenAPI

````yaml GET /reports
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:
    get:
      tags:
        - Reports
      summary: List reports
      description: >-
        List reports for the company, ordered newest-first. Each row includes
        status. Only `status: "done"` reports have detail rows you can read via
        GET /reports/{id}/details.
      parameters:
        - 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
        - schema:
            type: string
            description: Report ID to start after (cursor pagination, ordered id desc).
          required: false
          description: Report ID to start after (cursor pagination, ordered id desc).
          name: cursor
          in: query
        - schema:
            type: string
            default: '50'
            description: Number of reports to return (1-100, default 50)
          required: false
          description: Number of reports to return (1-100, default 50)
          name: limit
          in: query
        - schema:
            type: string
            description: Filter by name (prefix match, case-insensitive).
          required: false
          description: Filter by name (prefix match, case-insensitive).
          name: search
          in: query
      responses:
        '200':
          description: Reports retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Report'
                  pagination:
                    type: object
                    properties:
                      limit:
                        type: integer
                      cursor:
                        type: integer
                        nullable: true
                      hasMore:
                        type: boolean
                    required:
                      - limit
                      - cursor
                      - hasMore
                required:
                  - success
                  - data
                  - pagination
        '400':
          description: Invalid query parameters
          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
        '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

````