Filters
All List
endpoints support extensive filtering capability.
In some cases, you may filter on the same parameter with multiple values. For example, you might want to get a list of all GBP
and EUR
Fiat Account in a single query.
curl --request GET \
--url https://sandbox.fiatrepublic.com/api/v1/fiat-accounts?currency=GBP¤cy=EUR \
...
When filtering nested values, we use dot based nesting. For example, to filter on the actual balance of a Fiat Account being greater than or equal to 1,000, you can query by balance.actual(gte)=1000
📘 NOTE: |
---|
Only the (gte) - greater than or equal to and (lte) - less than or equal to operators are supported for filtering.
The (gt) - greater than and (lt) - less than operators are not currently available.
Updated 29 days ago