> ## 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 Wallet API

> Retrieve a single Breezing wallet by ID to inspect wallet details for exchange, blockchain, or bank crypto accounting records.



## OpenAPI

````yaml GET /wallets/{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:
  /wallets/{id}:
    get:
      tags:
        - Wallets
      summary: Get a single wallet
      description: >-
        Get a single wallet by ID. Returns the full wallet object including
        name, address, chain, exchange, sync status, date range of synced data,
        and transaction count.


        The wallet's name appears as walletFromName/walletToName on all
        transactions involving this wallet, providing context for categorization
        decisions. Useful for checking sync coverage before working with a
        wallet's transactions.
      parameters:
        - schema:
            type: string
            description: Wallet ID
            example: '1'
          required: true
          description: Wallet 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: Wallet retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    $ref: '#/components/schemas/Wallet'
                required:
                  - success
                  - data
        '400':
          description: Invalid wallet 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: Wallet 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:
    Wallet:
      type: object
      properties:
        id:
          type: number
          description: Wallet ID
        name:
          type: string
          description: Wallet name
        orgId:
          type: number
          description: Organization ID
        companyId:
          type: number
          description: Company ID
        address:
          type: string
          nullable: true
          description: Wallet address
        exchange:
          type: string
          nullable: true
          description: Exchange name (e.g. binance, kraken)
        bankAccount:
          type: string
          nullable: true
          description: Bank account identifier
        type:
          type: string
          nullable: true
          description: Wallet type
        chain:
          type: string
          nullable: true
          description: Blockchain identifier
          example: eth
        status:
          type: string
          nullable: true
          description: Sync status
        dataFrom:
          type: string
          nullable: true
          description: Data source identifier
        dateFrom:
          type: string
          nullable: true
          description: Sync start date
        dateTo:
          type: string
          nullable: true
          description: Sync end date
        addedTransactions:
          type: number
          nullable: true
          description: Number of synced transactions
        folderId:
          type: number
          nullable: true
          description: Folder ID for organization
        disablePullLatestTrx:
          type: boolean
          description: Whether auto-sync is disabled
        createdAt:
          type: number
          description: Created timestamp (unix ms)
        updatedAt:
          type: number
          description: Updated timestamp (unix ms)
      required:
        - id
        - name
        - orgId
        - companyId
        - address
        - exchange
        - bankAccount
        - type
        - chain
        - status
        - dataFrom
        - dateFrom
        - dateTo
        - addedTransactions
        - folderId
        - disablePullLatestTrx
        - createdAt
        - updatedAt

````