If you're developing apps or platforms that handle international payments, you’ve probably faced or are facing three major challenges: managing beneficiaries, converting currencies, and processing payouts. These processes can be complex and time-consuming, often requiring multiple integrations and custom-built solutions. Chimoney’s API streamlines everything into a single integration, making global payments easier and more efficient.
In this article, we’ll explore how you can use Chimoney’s API to simplify beneficiary management, currency conversion, and payouts.
We’ll cover the following steps:
Before you can start using Chimoney’s API, you need to obtain an API key. This key is required for authenticating all your API requests.
How to Get Your API Key
Note: Your API key is sensitive information. Do not share it publicly or commit it to version control systems like GitHub.
All API requests must include the X-API-KEY
header with your API key. Here’s an example of how to include it in a curl request:
Before initiating any transaction, it’s crucial to understand the rules and requirements for sending money to a specific country. Chimoney’s API provides an endpoint to dynamically fetch beneficiary rules, which can be used to construct forms or validation schemas.
The /info/beneficiary-rules/{countryCode} endpoint allows you to retrieve the rules for a specific country. This is particularly useful for dynamically constructing forms or validation schemas.
Example Request:
Example Response:
Using the response from the /info/beneficiary-rules/{countryCode} endpoint, you can dynamically construct a form for adding a beneficiary. Here’s how you can do it:
inputType
property to determine the type of input field (e.g., text, select).regexPattern
and validValues
properties to enforce validation rules.defaultValue
property to pre-fill fields where applicable.Example Form Construction:
To ensure the beneficiary’s bank details are accurate, you can use the /info/bank-search endpoint to search for banks by name or code.
Example Request:
Example Response:
The response includes a list of banks matching your search criteria. You can use this information to populate a dropdown or autocomplete field in your form, ensuring that users select a valid bank.
Once you’ve fetched the necessary rules and constructed the form, you can proceed to add beneficiaries. Chimoney’s API allows you to create and manage beneficiaries seamlessly.
The /beneficiary/bank endpoint is used to add a new beneficiary.
Example Request:
Example Response:
To retrieve a list of all beneficiaries, use the /beneficiary endpoint.
Example Request:
Example Response:
Before initiating a multicurrency transfer, you’ll need to generate a quote for the currency conversion. The /multicurrency-wallets/transfer-quote endpoint provides real-time exchange rates and fees.
Example Request:
Example Response:
Once you have the beneficiary details and a currency conversion quote, you can execute a payout. The /payouts/chimoney endpoint allows you to send funds to a beneficiary.
Example Request:
Example Response:
Chimoney’s API suite offers a robust and flexible solution for managing cross-border payments, multi-currency wallets, and payouts. This guide will help you integrate these features seamlessly into your application, ensuring a smooth and efficient payment experience for your users.
Explore our API Documentation to learn more about available endpoints and features, or book a meeting with us to see how Chimoney can support your business’s payment needs.