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&currency=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 1,000, you can query by balance.actual(gte)=1000