LogoLogo
  • Getting started
    • Overview
    • Quick start
    • Integration
  • Products
    • Fiat <> Crypto conversions
    • Third Party Payments
    • Segregated Accounts
  • Concepts
    • Authentication
    • Idempotency
    • Onboarding
    • Fees and Limits
    • Accounts
      • Client Accounts
      • Manager Accounts
    • Bank Accounts and Wallet Addresses
    • Supported Fiat Currencies, Blockchain Assets and Blockchain Networks
    • Webhooks
    • Document Management
  • Client API reference
    • Transactions
    • Preset fees
    • Deposit instructions
    • Bank accounts
    • Blockchain wallets
    • User
    • Uploads (temporary storage)
    • Documents (permanent storage)
    • Constants
    • Simulate
    • Models
  • Client Specification
  • Manager API reference
    • Clients
    • Clients onboarding
    • Client bank accounts
    • Client blockchain wallets
    • Client preset fees
    • Client deposit instructions
    • Client transactions
    • Transactions
    • Manager preset fees
    • Deposit instructions
    • Uploads (temporary storage)
    • Documents (permanent storage)
    • Webhooks
    • Constants
    • Simulate
    • Models
  • Manager Specification
Powered by GitBook
On this page
  1. Client API reference

Constants

PreviousDocuments (permanent storage)NextSimulate

Get a list of all constants

get

This endpoint returns a list of all constants. It includes: - fiat currencies, - blockchain networks, - blockchain assets, - blockchain fee groups, - fiat fee groups, - onboarding related constants. See the for more information.

Authorizations
Responses
200
The list of all constants.
application/json
401
Invalid API key
500
Internal server error
get
GET /api/client/v1/constants HTTP/1.1
Host: api.rialtobridge.xyz
RIALTO_API_KEY: YOUR_API_KEY
Accept: */*
{
  "fiatCurrencies": [
    {
      "code": "usd",
      "isoCode": "USD",
      "label": "US Dollar",
      "digits": 2,
      "feeGroup": "USD"
    },
    {
      "code": "eur",
      "isoCode": "EUR",
      "label": "Euro",
      "digits": 2,
      "feeGroup": "G10"
    }
  ],
  "blockchainNetworks": [
    {
      "code": "ethereum",
      "label": "Ethereum",
      "supportedAssets": [
        {
          "code": "eth",
          "address": null
        },
        {
          "code": "usdt",
          "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7"
        },
        {
          "code": "usdc",
          "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"
        },
        {
          "code": "dai",
          "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F"
        },
        {
          "code": "eurc",
          "address": "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c"
        }
      ]
    }
  ],
  "blockchainAssets": [
    {
      "code": "usdc",
      "label": "USD Coin",
      "decimals": 6,
      "feeGroup": "USD_STABLECOIN",
      "blockchainNetworks": [
        {
          "code": "ethereum",
          "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"
        },
        {
          "code": "polygon",
          "address": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359"
        },
        {
          "code": "solana",
          "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
        }
      ]
    }
  ],
  "blockchainFeeGroups": [
    {
      "code": "USD_STABLECOIM",
      "label": "USD stablecoins",
      "blockchainAssets": [
        "usdc",
        "usdt",
        "dai"
      ]
    }
  ],
  "fiatFeeGroups": [
    {
      "code": "USD",
      "label": "USD",
      "fiatCurrencies": [
        "usd"
      ]
    }
  ],
  "onboarding": {
    "countryCodes": [
      {
        "code": "FR",
        "label": "France"
      }
    ],
    "individualOccupations": [
      {
        "code": "partTimeEmployee",
        "label": "Employee (Part-Time)"
      }
    ],
    "jobBusinessSectors": [
      {
        "code": "agriculture",
        "label": "Agriculture"
      }
    ],
    "annualRevenueRanges": [
      {
        "code": "lessThan50K",
        "label": "Inferior to 50,000$"
      }
    ],
    "globalWealthRanges": [
      {
        "code": "lessThan50K",
        "label": "Inferior to 50,000$"
      }
    ],
    "individualPurposesOfOnboarding": [
      {
        "code": "personalOnOffRamp",
        "label": "Personal On/Off Ramp"
      }
    ],
    "entityPurposesOfOnboarding": [
      {
        "code": "tradingActivities",
        "label": "Trading activities"
      }
    ],
    "sourceOfFunds": [
      {
        "code": "salary",
        "label": "Salary"
      }
    ]
  }
}
associated documentation