Skip to main content
GET
/
accounts
/
{account_id}
/
transactions
List Transactions for an Account
curl --request GET \
  --url https://api.meow.com/v1/accounts/{account_id}/transactions \
  --header 'x-api-key: <api-key>'
{
  "transactions": [
    {
      "depositTransaction": {
        "transactionId": "<string>",
        "transactionTimestamp": "2023-11-07T05:31:56Z",
        "description": "<string>",
        "amount": 123,
        "referenceTransactionId": "<string>",
        "postedTimestamp": "2023-11-07T05:31:56Z",
        "category": "<string>",
        "subCategory": "<string>",
        "foreignAmount": 123,
        "card_id": "<string>",
        "payee": "<string>",
        "checkNumber": "<string>"
      }
    }
  ],
  "page": {
    "nextOffset": "qwer123454q2f"
  }
}

Authorizations

x-api-key
string
header
required

Your Meow API key, sent in the x-api-key header for authentication.

Headers

x-entity-id
string<uuid>

Optional entity_id to scope requests to a specific entity.

Path Parameters

account_id
string
required

The ID of the account.

Query Parameters

startTime
string | null

Start time for filtering transactions, in ISO 8601 format.

Maximum string length: 100
endTime
string | null

End time for filtering transactions, in ISO 8601 format.

Maximum string length: 100
offset
string | null

Opaque offset identifier for pagination. Use the nextOffset from a previous response.

Maximum string length: 100
limit
integer | null
default:10

Maximum number of transactions to return.

Required range: 1 <= x <= 100
transferMethod
enum<string> | null

Filter to a specific transfer method.

Available options:
INCOMING_ACH,
INCOMING_WIRE,
OUTGOING_ACH,
OUTGOING_WIRE,
CHECK_DEPOSIT,
BOOK_TRANSFER,
ISSUED_CHECK,
HOLD,
CARD,
INTEREST,
MANUAL_POST,
INTERNATIONAL_PAYMENT,
INCOMING_INSTANT_PAYMENT,
OUTGOING_INSTANT_PAYMENT
status
enum<string>[] | null

Filter to one or more transaction statuses. Repeat the parameter to pass multiple values (e.g. ?status=PENDING&status=POSTED). AUTHORIZATION and MEMO are accepted but currently return no results.

Available options:
AUTHORIZATION,
MEMO,
PENDING,
POSTED

Response

Successful Response

transactions
(DepositTransactionModel · object | InvestmentTransactionModel · object | DigitalWalletTransactionModel · object)[]
required

The account's transactions. The transaction shape depends on the account type; this is empty when there are no transactions to return.

page
PageMetadata · object | null

Metadata for pagination.