Finrax API
HomeChangelogIntegration GuideResources
HomeChangelogIntegration GuideResources
  1. Rates and metadata
  • Getting Started
    • Introduction
    • Environments
    • Errors
    • Authorization
      • API Key Management
      • Signature
      • Code Snippets
  • Payments and Withdrawals
    • Crypto Payments
      • Fetch payment by ID
      • 🔒Fetch payments
      • Submit crypto payment
      • Request crypto payment
    • Fetch withdrawals
      GET
    • Fetch withdrawal metadata
      GET
    • Request crypto withdrawal
      POST
    • Fetch whitelisted addresses
      GET
    • Whitelist an address
      POST
    • Fetch crypto withdrawal approval by ID
      GET
    • Fetch business by ID
      GET
    • Fetch business balance
      GET
    • Unwhitelist an address
      DELETE
  • Callbacks
    • Deposit received notification
    • Withdrawal broadcast notification
    • Withdrawal approved/rejected notification
  • Address validation
    • Validate address
      GET
    • Validate address and destination tag
      GET
  • Rates and metadata
    • Fetch market rates
      GET
    • Fetch fiat rates
      GET
    • Fetch deposit rates
      GET
    • Fetch all currencies
      GET
  1. Rates and metadata

Fetch all currencies

GET
/api/v1/payment/currencies
Fetch all supported 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
Currency code.
name
string 
required
Currency full name.
model
enum<string> 
required
Currency model.
Allowed values:
FIATACCOUNTUTXO
supportedNetworks
array[string]
optional
Supported networks, if this is a cryptocurrency.
Allowed values:
BCHBTCLTCXLMXRPETHBSCSOLTRX
defaultNetwork
enum<string> 
optional
Default network, if this is a cryptocurrency.
Allowed values:
BCHBTCLTCXLMXRPETHBSCSOLTRX
isFiat
boolean 
required
True for fiat currencies, otherwise false.
isERC20
boolean 
required
True for ERC-20 tokens, otherwise false.
Examples
{
    "abbreviation": "XLM",
    "name": "Stellar Lumens",
    "model": "ACCOUNT",
    "supportedNetworks": [
        "XLM"
    ],
    "defaultNetwork": "XLM",
    "isFiat": false,
    "isERC20": false
}
Modified at 2024-07-24 14:04:47
Previous
Fetch deposit rates
Built with