Skip to main content
GET
/
v1
/
ais
/
accounts
/
{accountId}
/
transactions
Get Transactions for Account
curl --request GET \
  --url https://acount-apis-staging-a8cdb2402163.herokuapp.com/v1/ais/accounts/{accountId}/transactions \
  --header 'Authorization: Bearer <token>'
[
  {
    "transactionId": "txn_2abc123def456",
    "amount": "100.50",
    "currency": "DKK",
    "description": "Payment to merchant",
    "bookingDate": "2024-01-15T10:30:00Z",
    "valueDate": "2024-01-15T10:30:00Z",
    "counterparty": {
      "name": "John Doe",
      "iban": "DK1234567890123456"
    },
    "reference": "REF123456",
    "type": "DEBIT",
    "status": "BOOKED"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-request-id
string

Optional request ID for tracking

Path Parameters

accountId
string
required

Token.io account ID

Example:

"account_2abc123def456"

Query Parameters

fromDate
string
required

Start date for transactions (ISO 8601)

Example:

"2024-01-01T00:00:00Z"

toDate
string
required

End date for transactions (ISO 8601)

Example:

"2024-01-31T23:59:59Z"

Response

Successfully retrieved account transactions