- Getting Started
- Payments and Withdrawals
- Callbacks
- Address validation
- Rates and metadata
Fetch all currencies
GET
/api/v1/payment/currencies
Request
None
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://payments.finrax.com/api/v1/payment/currencies'
Responses
🟢200Returns the supported currencies.
application/json
Body
Additional properties
object (CurrencyDetailsResponse)
optional
abbreviation
string
required
name
string
required
model
enum<string>
required
Allowed values:
FIATACCOUNTUTXO
supportedNetworks
array[string]
optional
Allowed values:
BCHBTCLTCXLMXRPETHBSCSOLTRX
defaultNetwork
enum<string>
optional
Allowed values:
BCHBTCLTCXLMXRPETHBSCSOLTRX
isFiat
boolean
required
isERC20
boolean
required
Examples
{
"abbreviation": "XLM",
"name": "Stellar Lumens",
"model": "ACCOUNT",
"supportedNetworks": [
"XLM"
],
"defaultNetwork": "XLM",
"isFiat": false,
"isERC20": false
}
Modified at 2024-07-24 14:04:47