Skip to main content
GET
/
investment-transactions
List investment transactions
curl --request GET \
  --url https://api.finta.io/v2/investment-transactions \
  --header 'Authorization: Bearer <token>'
{
  "investmentTransactions": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "bankConnectionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "bankAccountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "securityId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "provider": "plaid",
      "providerId": "<string>",
      "date": "2023-12-25",
      "amount": 123,
      "quantity": 123,
      "price": 123,
      "fees": 123,
      "currency": "<string>",
      "summary": "<string>",
      "type": "<string>",
      "subtype": "<string>"
    }
  ],
  "pageInfo": {
    "nextCursor": "<string>",
    "hasMore": true
  }
}

Authorizations

Authorization
string
header
required

Finta API key from the dashboard (Bearer token).

Query Parameters

bankConnectionId
string<uuid>

Filter by bank connection ID

bankAccountId
string<uuid>

Filter by bank account ID

securityId
string<uuid>

Filter by Finta security ID

startDate
string<date>

Inclusive start date (YYYY-MM-DD)

endDate
string<date>

Inclusive end date (YYYY-MM-DD)

cursor
string

Opaque pagination cursor from a previous response

limit
integer
default:50

Page size (default 50, max 250)

Required range: 1 <= x <= 250

Response

Investment transactions for the authenticated user

investmentTransactions
object[]
required
pageInfo
object
required