Fetch account signals
Returns behavioral feature state derived from an account's transaction history.
These signals expose the same data used by behavioral rule attributes (e.g. AMOUNT_Z_SCORE with scope: ACCOUNT, IS_NEW_COUNTRY with scope: ACCOUNT) and custom code TRANSACTION_HISTORY_SIGNALS features, allowing clients to inspect feature values before writing rules and debug rule behavior.
Note: 3DS fields are not available at the account scope and will be null.
Path parameters
The token of the account to fetch signals for.
Response
Account Signals
The average approved transaction amount over the entity's lifetime, in cents. Null if fewer than 5 approved transactions have been recorded.
The standard deviation of approved transaction amounts over the entity's lifetime, in cents. Null if fewer than 30 approved transactions have been recorded.
The total number of approved transactions over the entity's lifetime.
The average approved transaction amount over the last 7 days, in cents. Null if fewer than 5 approved transactions in window.
The standard deviation of approved transaction amounts over the last 7 days, in cents. Null if fewer than 30 approved transactions in window.
The number of approved transactions in the last 7 days.
The average approved transaction amount over the last 30 days, in cents. Null if fewer than 5 approved transactions in window.
The standard deviation of approved transaction amounts over the last 30 days, in cents. Null if fewer than 30 approved transactions in window.
The number of approved transactions in the last 30 days.
The average approved transaction amount over the last 90 days, in cents. Null if fewer than 5 approved transactions in window.
The standard deviation of approved transaction amounts over the last 90 days, in cents. Null if fewer than 30 approved transactions in window.
The number of approved transactions in the last 90 days.
Whether the entity has no prior transaction history. Returns true if no history is found. Null if transaction history exists but a first transaction timestamp is unavailable.
The number of days since the last approved transaction on the entity.
The 3DS authentication success rate for the card, as a percentage from 0.0 to 100.0. Null for account responses.
The number of distinct merchant countries seen in the entity's transaction history.
The number of distinct MCCs seen in the entity's transaction history.
The set of merchant countries seen in the entity's transaction history. Clients can use this to determine whether a new transaction's country is novel (i.e. compute is_new_country).
The set of MCCs seen in the entity's transaction history. Clients can use this to determine whether a new transaction's MCC is novel (i.e. compute is_new_mcc).
The set of card acceptor IDs seen in the card's approved transaction history, capped at the 1000 most recently seen. Null for account responses. Clients can use this to determine whether a new transaction's merchant is novel (i.e. compute is_new_merchant).
The timestamp of the first approved transaction for the entity, in ISO 8601 format.
The timestamp of the most recent approved transaction for the entity, in ISO 8601 format.
The merchant country of the last card-present transaction.
The merchant postal code of the last card-present transaction.
The timestamp of the last card-present transaction, in ISO 8601 format.
The Welford M2 accumulator for lifetime approved transaction amounts. Used together with avg_transaction_amount and approved_txn_count to compute the z-score of a new transaction amount (variance = M2 / (count - 1)).
The Welford M2 accumulator for approved transaction amounts over the last 7 days.
The Welford M2 accumulator for approved transaction amounts over the last 30 days.
The Welford M2 accumulator for approved transaction amounts over the last 90 days.
The number of successful 3DS authentications for the card. Null for account responses.
The total number of 3DS authentication attempts for the card. Null for account responses.