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>",
        "debitCreditMemo": "CREDIT",
        "status": "AUTHORIZATION",
        "amount": 123,
        "referenceTransactionId": "<string>",
        "postedTimestamp": "2023-11-07T05:31:56Z",
        "category": "<string>",
        "subCategory": "<string>",
        "foreignAmount": 123,
        "foreignCurrency": "AED",
        "card_id": "<string>",
        "transactionType": "ADJUSTMENT",
        "payee": "<string>",
        "checkNumber": "<string>"
      }
    }
  ],
  "page": {
    "nextOffset": "qwer123454q2f"
  }
}

Authorizations

x-api-key
string
header
required

Your Meow API key for authentication

Headers

x-entity-id
string<uuid>

Optional entity ID for scoped access to entity-specific data

Path Parameters

account_id
string
required

The ID of the account.

Query Parameters

startTime
string | null

Start time for filtering transactions (ISO 8601 format). Also accepts 'start_time' for backwards compatibility.

Maximum string length: 100
endTime
string | null

End time for filtering transactions (ISO 8601 format). Also accepts 'end_time' for backwards compatibility.

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

Response

Successful Response

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

An array of transactions with entity type dependent on the account type. Return an empty array if this information isn't available.

page
PageMetadata · object

Metadata for pagination