Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

Filter Rules

Rule 1: Exact Match Filtering (=)
You can combine multiple exact-match filters across different fields using the equality (=) operator. The API will return results that match all provided criteria (an AND condition).

Example: Find transactions where the recipient type is an end-user AND the amount is exactly 5000.

"Filters": [
{"Field": "ToType", "Operator": "=", "Value": "S"},
{"Field": "Amount", "Operator": "=", "Value": 5000}
]

Rule 2: Matching Multiple Values (in)
To match against multiple possible values for a single field (an OR condition), use the in operator and provide an array of exact values.

Example: Find transactions where the amount is exactly 5000 OR 6000.

"Filters": [
{"Field": "Amount", "Operator": "in", "Value": [5000, 6000]}
]

Rule 3: Unsupported Operations
For optimal API performance, this endpoint strictly supports the = and in operators.

  • Inequality operators (!=, >, <, >=, <=) are not supported and will result in an API validation error.
  • Transactions are automatically paginated and returned in their default system sequence.