Fetching payment methods
This API provides a paginated list of available payment methods tailored to a specific currency and transaction direction, enabling businesses to offer customized options for deposits or withdrawals. You can retrieve details about supported banks and local wallets for TransFi, with the flexibility to enable additional methods based on your requirements. Contact the TransFi team to request the activation of specific payment methods.
Example Usage:
For Deposit Direction
To fetch payment methods for deposits in Euros (EUR), use the following curl
command:
curl --request GET \
--url 'https://sandbox-api.transfi.com/v2/payment-methods?currency=EUR&limit=2&page=1&direction=deposit&logoFormat=svg' \
--header 'Accept: application/json' \
--header 'Authorization: Basic Og=='
Example Usage:
For Withdraw Direction
To fetch payment methods for withdrawals in Euros (EUR), use the following curl
command:
curl --request GET \
--url 'https://sandbox-api.transfi.com/v2/payment-methods?currency=EUR&limit=2&page=1&direction=withdraw&logoFormat=svg' \
--header 'Accept: application/json' \
--header 'Authorization: Basic Og=='
Updated 4 months ago