---
title: "List transactions of a given external account"
method: GET
path: "/external_accounts/{external_account_id}/transactions"
tags: ["External Accounts"]
---

# List transactions of a given external account

`GET /external_accounts/{external_account_id}/transactions`

Returns a list of transactions on from the external account, given an external account ID. Maximum 500 transctions will be returned.

## Path parameters

- `external_account_id` string, uuid, required

## Query parameters

- `start_date` string, date, required
- `end_date` string, date, required

## Response `200`

The external account

- ExternalAccountsTransactionList
  - `transactions` ExternalAccountTransaction[], required — Array of transactions of a given external account
    - `amount` integer — Transaction amount. Number in cents. E.g. 1000 represents $10.00
    - `authorized_date` string, date, nullable — Date that the transaction is authorized. ISO 8601 format ( YYYY-MM-DD ).
    - `category` string[] — Category of the transaction
    - `check_number` string — Check number of the transaction. This field will be null if not a check transaction.
    - `currency` string — ISO 4217 alphabetic currency code
    - `date` string, date — For pending transactions, this represents the date of the transaction occurred; for posted transactions, this represents the date of the transaction posted. ISO 8601 format ( YYYY-MM-DD ).
    - `is_pending` boolean — Indicates the transaction is pending or unsettled if true.
    - `merchant_name` string — Merchant name of the transaction
    - `payment_channel` 'IN_STORE' | 'ONLINE' | 'OTHER' — channel used to make a payment
    - `payment_method` string — Transfer type of the transaction, e.g. ACH
    - `transaction_id` string — case-sensitive transaction ID
    - `transaction_type` string — type of the transaction

## Other responses

- `401` — Unauthorized
- `403` — Forbidden error
- `404` — Resource not found
- `422` — Unprocessable entity request response
- `500` — Internal server error

---

[API](https://skmtc.net/synctera/apis/synctera-api.md) · [All operations](https://skmtc.net/synctera/apis/synctera-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/synctera/synctera-api/revisions/b0d812e6cdd0/schema)
