Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve all currencies supported for payouts and conversions.
TypeScript
import { Solifyn } from 'solifyn'; const solifyn = new Solifyn({ apiKey: 'your_private_api_key_here' }); // Get supported payout and conversion currencies const currencies = await solifyn.checkout.getSupportedCurrencies(); console.log('Supported Currencies:', currencies);
[ { "label": "US Dollar", "value": "usd" } ]
Supported currencies resolved successfully.
The label display name of the currency
"US Dollar"
The currency code
"usd"