# List tax transactions

Lists tax-relevant transactions done by the user within the Bare Bitcoin platform.
 Note that this does NOT include any of the third party transactions imported into
 the platform tax calculator.

Endpoint: GET /v1/tax/transactions
Version: 0.0.1
Security: apiKey

## Response 200 fields (application/json):

  - `transactions` (array)

  - `transactions.id` (string)

  - `transactions.accountId` (string)

  - `transactions.type` (string)
    Enum: "TAX_TRANSACTION_TYPE_BTC_BUY", "TAX_TRANSACTION_TYPE_BTC_SELL", "TAX_TRANSACTION_TYPE_BTC_WITHDRAWAL", "TAX_TRANSACTION_TYPE_BTC_DEPOSIT", "TAX_TRANSACTION_TYPE_BTC_BONUS", "TAX_TRANSACTION_TYPE_FIAT_DEPOSIT", "TAX_TRANSACTION_TYPE_FIAT_WITHDRAWAL"

  - `transactions.subType` (string)

  - `transactions.createTime` (string)

  - `transactions.finalizeTime` (string)

  - `transactions.inAmount` (string)
    Stringified decimal number

  - `transactions.inCurrency` (string)

  - `transactions.outAmount` (string)
    Stringified decimal number

  - `transactions.outCurrency` (string)

  - `transactions.feeAmount` (string)
    Stringified decimal number

  - `transactions.feeCurrency` (string)

  - `transactions.rateMarket` (string)
    Stringified decimal number

  - `transactions.isPayment` (boolean)

  - `transactions.paymentInfo` (string)

  - `transactions.note` (string)

  - `transactions.usdnok` (string)
    Stringified decimal number

  - `transactions.runningBalanceBtc` (string)
    Stringified decimal number


