Skip to main content
GET
List Transaction Validations

Authorizations

X-API-Key
string
header
required

API Key authentication. Used by single-tenant deployments (MULTI_TENANT_ENABLED=false). Sent on every /v1/* request.

Headers

Content-Type
string
required

The type of media of the resource. Must be application/json.

X-API-Key
string
required

The API Key for authentication. This header is required for all endpoints except health checks.

X-Request-Id
string<uuid>

A unique identifier used to trace and track each request.

Query Parameters

limit
integer
default:100

The maximum number of items to include in the response. Default: 100, Max: 1000

Required range: 1 <= x <= 1000
cursor
string

Pagination cursor from previous response. When using cursor, sortBy and sortOrder cannot be changed.

sort_by
enum<string>
default:created_at

The field used to sort the results.

Available options:
created_at,
processing_time_ms
sort_order
enum<string>
default:DESC

The order used to sort the results.

Available options:
ASC,
DESC
start_date
string<date-time>

Filter from this date (inclusive). Must be RFC3339 format with timezone. Defaults to 90 days before current time.

end_date
string<date-time>

Filter to this date (exclusive). Must be RFC3339 format with timezone. Defaults to current time.

decision
enum<string>

Filter by decision (ALLOW, DENY, REVIEW).

Available options:
ALLOW,
DENY,
REVIEW
account_id
string<uuid>

Filter by account ID (UUID).

matched_rule_id
string<uuid>

Filter by matched rule ID (UUID).

exceeded_limit_id
string<uuid>

Filter by exceeded limit ID (UUID).

segment_id
string<uuid>

Filter by segment ID (UUID).

portfolio_id
string<uuid>

Filter by portfolio ID (UUID).

transaction_type
enum<string>

Filter by transaction type.

Available options:
CARD,
WIRE,
PIX,
CRYPTO

Response

Indicates that the request was successful and the response contains the expected data.

Paginated list of transaction validations (returns ValidationSummary — a flat, list-optimized shape with fewer fields than TransactionValidation).

transactionValidations
object[]

List of transaction validation records.

hasMore
boolean

Whether there are more results available.

nextCursor
string | null

Cursor for fetching the next page. Null if no more results.