# List operations

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/operations:
    get:
      summary: List operations
      deprecated: false
      description: ''
      operationId: getOperations
      tags:
        - REST API/Endpoints/Operations
        - Operations
      parameters:
        - name: cursor
          in: query
          description: ''
          required: false
          example: eyJsYXN0SWQiOiIxMjM0NTYifQ==
          schema:
            type: string
        - name: page_size
          in: query
          description: ''
          required: false
          example: 25
          schema:
            type: integer
            format: int32
            default: 25
        - name: from
          in: query
          description: ''
          required: false
          example: '2024-01-01T00:00:00.000Z'
          schema:
            type: string
            format: date-time
        - name: to
          in: query
          description: ''
          required: false
          example: '2024-12-31T23:59:59.000Z'
          schema:
            type: string
            format: date-time
        - name: asset_id
          in: query
          description: ''
          required: false
          example: b86c034b-efe3-11eb-b56f-0691764446a7
          schema:
            type: array
            items:
              type: string
              format: uuid
        - name: currency_id
          in: query
          description: ''
          required: false
          example: b88b8466-efe3-11eb-b56f-0691764446a7
          schema:
            type: array
            items:
              type: string
              format: uuid
      responses:
        '200':
          description: Paginated list of operations
          content:
            '*/*':
              schema:
                properties:
                  data:
                    type: array
                    items:
                      properties:
                        operationId:
                          type: string
                          format: uuid
                        operationType:
                          type: string
                        transactions:
                          type: array
                          items:
                            properties:
                              transactionId:
                                type: string
                                format: uuid
                              assetId:
                                type: string
                                format: uuid
                              currencyId:
                                type: string
                                format: uuid
                              walletId:
                                type: string
                                format: uuid
                              walletOwner:
                                type: string
                              assetAmount:
                                properties:
                                  value:
                                    type: string
                                  assetId:
                                    type: string
                                    format: uuid
                                  currencyId:
                                    type: string
                                    format: uuid
                                x-apidog-orders:
                                  - value
                                  - assetId
                                  - currencyId
                                type: object
                              feeAmount:
                                properties:
                                  value:
                                    type: string
                                  assetId:
                                    type: string
                                    format: uuid
                                  currencyId:
                                    type: string
                                    format: uuid
                                x-apidog-orders:
                                  - value
                                  - assetId
                                  - currencyId
                                type: object
                              transactionType:
                                type: string
                              flow:
                                type: string
                                enum:
                                  - INCOMING
                                  - OUTGOING
                              orderId:
                                type: string
                              creditedAt:
                                type: string
                                format: date-time
                              assetBalanceAfter:
                                properties:
                                  value:
                                    type: string
                                  assetId:
                                    type: string
                                    format: uuid
                                  currencyId:
                                    type: string
                                    format: uuid
                                x-apidog-orders:
                                  - value
                                  - assetId
                                  - currencyId
                                type: object
                              compensates:
                                type: string
                                format: uuid
                              compensatesInfo:
                                properties:
                                  operationType:
                                    type: string
                                  transactionType:
                                    type: string
                                x-apidog-orders:
                                  - operationType
                                  - transactionType
                                type: object
                              indexAssetId:
                                type: string
                                format: uuid
                              trade:
                                properties:
                                  tradeId:
                                    type: string
                                    format: uuid
                                  fee:
                                    properties:
                                      value:
                                        type: string
                                      assetId:
                                        type: string
                                        format: uuid
                                      currencyId:
                                        type: string
                                        format: uuid
                                    x-apidog-orders:
                                      - value
                                      - assetId
                                      - currencyId
                                    type: object
                                  feePercentage:
                                    type: string
                                  rate:
                                    type: string
                                  rateWithFee:
                                    type: string
                                  toEurRate:
                                    type: string
                                x-apidog-orders:
                                  - tradeId
                                  - fee
                                  - feePercentage
                                  - rate
                                  - rateWithFee
                                  - toEurRate
                                type: object
                            x-apidog-orders:
                              - transactionId
                              - assetId
                              - currencyId
                              - walletId
                              - walletOwner
                              - assetAmount
                              - feeAmount
                              - transactionType
                              - flow
                              - orderId
                              - creditedAt
                              - assetBalanceAfter
                              - compensates
                              - compensatesInfo
                              - indexAssetId
                              - trade
                            type: object
                      x-apidog-orders:
                        - operationId
                        - operationType
                        - transactions
                      type: object
                  selfCursor:
                    type: string
                  nextCursor:
                    type: string
                  hasNextPage:
                    type: boolean
                x-apidog-orders:
                  - data
                  - selfCursor
                  - nextCursor
                  - hasNextPage
                type: object
          headers: {}
          x-apidog-name: OK
      security:
        - x-api-key: []
          x-apidog:
            schemeGroups:
              - id: le6GejEfGgRoDcwrUXjcB
                schemeIds:
                  - x-api-key
            required: true
            use:
              id: le6GejEfGgRoDcwrUXjcB
            scopes:
              le6GejEfGgRoDcwrUXjcB:
                x-api-key: []
      x-apidog-folder: REST API/Endpoints/Operations
      x-apidog-status: released
      x-run-in-apidog: https://app.eu.apidog.com/web/project/365298/apis/api-4375770-run
components:
  schemas: {}
  securitySchemes:
    x-api-key:
      type: apikey
      name: x-api-key
      in: header
servers:
  - url: https://api.public.bitpanda.com
    description: Production
security: []

```