Skip to main content
GET
List Transactions for an Account

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

start_time
string | null

Start time for filtering transactions, in ISO 8601 format.

Maximum string length: 100
end_time
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
transfer_method
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
deposit_tx_hash
string | null

Find the deposit with this on-chain transaction hash, as reported in a crypto_deposit webhook. Searches every status unless status is also given. Only valid for a global account.

Maximum string length: 255
status
enum<string>[] | null

Filter to one or more transaction statuses, as a list, e.g. ["PENDING", "POSTED"]. Omit to return every status. 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.