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

> Retrieve Breezing token assets with cursor pagination, spam filtering, and GL account mappings for crypto accounting workflows.



## OpenAPI

````yaml GET /assets
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:
  /assets:
    get:
      tags:
        - Assets
      summary: List assets/tokens
      description: >-
        List unique token assets tracked by the company. Each asset has a
        symbol, contract address, and optional GL account mapping (accountCode,
        accountName) for balance-sheet purposes.


        When balanceSheetSetup is "token" (Token View), each token gets one
        global GL account across all wallets. For example, all ETH balances roll
        up to a single "Crypto Assets - ETH" account regardless of which wallet
        holds them. Use assets_update to set or change these mappings.


        For per-wallet tracking (Wallet View) or per-wallet+token tracking
        (Combined View), asset accounts are set on transactions instead. See
        transactions_update.


        Use "search" to find tokens by symbol prefix (e.g. "ETH"). Defaults to
        non-spam tokens; use showSpam="all" to include spam/airdrop tokens.
      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: Asset ID to start after (cursor-based pagination)
            example: '100'
          required: false
          description: Asset ID to start after (cursor-based pagination)
          name: cursor
          in: query
        - schema:
            type: string
            default: '50'
            description: Number of assets to return (1-100)
            example: '50'
          required: false
          description: Number of assets to return (1-100)
          name: limit
          in: query
        - schema:
            type: string
            description: Search by token symbol (prefix match, e.g. "ETH", "USDC")
            example: ETH
          required: false
          description: Search by token symbol (prefix match, e.g. "ETH", "USDC")
          name: search
          in: query
        - schema:
            type: string
            enum:
              - all
              - spamOnly
              - notSpam
            default: notSpam
            description: >-
              Spam filter (default: "notSpam"). Breezing auto-detects
              spam/airdrop tokens. Use "all" to include them in results.
          required: false
          description: >-
            Spam filter (default: "notSpam"). Breezing auto-detects spam/airdrop
            tokens. Use "all" to include them in results.
          name: showSpam
          in: query
      responses:
        '200':
          description: Assets retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Asset'
                  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:
    Asset:
      type: object
      properties:
        id:
          type: number
          description: Asset ID
        symbol:
          type: string
          description: Token symbol
          example: ETH
        address:
          type: string
          nullable: true
          description: Token contract address
        orgId:
          type: number
          description: Organization ID
        companyId:
          type: number
          description: Company ID
        accountCode:
          type: string
          nullable: true
          description: >-
            GL account code for Token View balance-sheet mapping
            (balanceSheetSetup="token"): one GL account per token across all
            wallets
          example: '1200'
        accountName:
          type: string
          nullable: true
          description: >-
            GL account name matching the code (e.g. "Crypto Assets - ETH").
            Displayed in reports and synced to accounting software.
          example: Crypto Assets
        isSpam:
          type: boolean
          description: >-
            Whether asset is flagged as spam. Breezing auto-detects many
            spam/airdrop tokens.
        createdAt:
          type: number
          description: Created timestamp (unix ms)
        updatedAt:
          type: number
          description: Updated timestamp (unix ms)
      required:
        - id
        - symbol
        - address
        - orgId
        - companyId
        - accountCode
        - accountName
        - isSpam
        - createdAt
        - updatedAt

````