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

# List crypto transactions

> Get API-created crypto transactions for your business. Required scope: `crypto-transaction:read`.



## OpenAPI

````yaml /api-reference/crypto/list-transactions-openapi.json get /api/external/crypto/transactions
openapi: 3.1.0
info:
  title: Blaaiz Platform API - List Crypto Transactions
  version: 1.0.0
  description: Get paginated crypto transactions that your API integration created.
servers:
  - url: https://api-prod.blaaiz.com
  - url: https://api-dev.blaaiz.com
security: []
tags:
  - name: Crypto
paths:
  /api/external/crypto/transactions:
    get:
      tags:
        - Crypto
      summary: List crypto transactions
      description: >-
        Get API-created crypto transactions for your business. Required scope:
        `crypto-transaction:read`.
      parameters:
        - name: wallet_id
          in: query
          schema:
            type: string
        - name: status
          in: query
          schema:
            type: string
            enum:
              - processing
              - successful
              - failed
        - name: type
          in: query
          schema:
            type: string
            enum:
              - payout
              - swap
        - name: direction
          in: query
          schema:
            type: string
            enum:
              - in
              - out
        - name: start_date
          in: query
          schema:
            type: string
            format: date
        - name: end_date
          in: query
          schema:
            type: string
            format: date
        - name: search_term
          in: query
          schema:
            type: string
        - name: per_page
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 10
      responses:
        '200':
          description: Crypto transactions retrieved successfully.
          content:
            application/json:
              example:
                data:
                  - id: transaction-id
                    wallet_id: wallet-id
                    type: swap
                    direction: out
                    status: successful
                    reference: SWAP-OUT-REF
                    currency: BTC
                    amount: '0.50000000'
                current_page: 1
                per_page: 10
                total: 1
      security:
        - oauth2ClientCredentials:
            - crypto-transaction:read
components:
  securitySchemes:
    oauth2ClientCredentials:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: /oauth/token
          scopes:
            crypto-transaction:read: Read crypto wallet transactions.

````