# Constants

## Get a list of all constants

> This endpoint returns a list of all constants. \<br /> It includes:\
> &#x20;     \- fiat currencies,\
> &#x20;     \- blockchain networks,\
> &#x20;     \- blockchain assets,\
> &#x20;     \- blockchain fee groups,\
> &#x20;     \- fiat fee groups,\
> &#x20;     \- onboarding related constants. \<br />\
> See the \[associated documentation]\(<https://docs.rialtobridge.xyz/concepts>) for more information.<br>

```json
{"openapi":"3.1.0","info":{"title":"Rialto Manager API","version":"1.0.0"},"servers":[{"url":"https://api.rialtobridge.xyz/api/manager/v1","description":"Main (production) server for the Rialto Manager API"},{"url":"https://staging.api.rialtobridge.xyz/api/manager/v1","description":"Test (staging) server for the Rialto Manager API"},{"url":"http://localhost:3002/api/manager/v1","description":"Development server for the Rialto Manager API"}],"security":[{"api_key":[]}],"components":{"securitySchemes":{"api_key":{"type":"apiKey","name":"RIALTO_API_KEY","in":"header"}}},"paths":{"/constants":{"get":{"summary":"Get a list of all constants","description":"This endpoint returns a list of all constants. <br /> It includes:\n      - fiat currencies,\n      - blockchain networks,\n      - blockchain assets,\n      - blockchain fee groups,\n      - fiat fee groups,\n      - onboarding related constants. <br />\nSee the [associated documentation](https://docs.rialtobridge.xyz/concepts) for more information.\n","operationId":"getAllConstants","tags":["Constants"],"responses":{"200":{"description":"The list of all constants.","content":{"application/json":{"schema":{"type":"object","properties":{"fiatCurrencies":{"description":"The list of supported fiat currencies","type":"array","items":{"type":"object","properties":{"code":{"type":"string","description":"A supported fiat currency code. This is the code that is used in the API."},"isoCode":{"type":"string","description":"A supported fiat currency ISO code"},"label":{"type":"string","description":"A supported fiat currency name"},"digits":{"type":"integer","description":"The number of digits after the decimal point for this fiat currency"},"feeGroup":{"type":"string","description":"The fee group for this fiat currency"}}}},"blockchainNetworks":{"description":"The list of supported blockchain networks","type":"array","items":{"type":"object","properties":{"code":{"type":"string","description":"A supported blockchain network code. This is the code that is used in the API."},"label":{"type":"string","description":"A supported blockchain network name"},"supportedAssets":{"type":"array","items":{"type":"object","properties":{"code":{"type":"string","description":"A supported asset code for this blockchain network"},"address":{"type":["string","null"],"description":"The address for this asset on this blockchain network.<br /> Null if the asset is native to the blockchain network.\n"}}}}}}},"blockchainAssets":{"description":"The list of supported blockchain assets","type":"array","items":{"type":"object","properties":{"code":{"type":"string","description":"A supported blockchain asset code. This is the code that is used in the API."},"label":{"type":"string","description":"A supported blockchain asset name"},"decimals":{"type":"integer","description":"The number of decimals for this blockchain asset. Maximum 6 decimals will be supported in the API even if the blockchain asset supports more decimals."},"feeGroup":{"type":"string","description":"The fee group for this blockchain asset."},"blockchainNetworks":{"type":"array","description":"A list of blockchain networks that support this asset","items":{"type":"object","properties":{"code":{"type":"string","description":"A supported blockchain network code for this asset"},"address":{"type":["string","null"],"description":"The address for this asset on this blockchain network.<br /> Null if the asset is native to the blockchain network.\n"}}}}}}},"blockchainFeeGroups":{"description":"The list of supported blockchain fee groups","type":"array","items":{"type":"object","properties":{"code":{"type":"string","description":"A supported blockchain fee group code. This is the code that is used in the API."},"label":{"type":"string","description":"A supported blockchain fee group name"},"blockchainAssets":{"type":"array","description":"The list of blockchain assets that belong to this fee group","items":{"type":"string","description":"A supported blockchain asset code"}}}}},"fiatFeeGroups":{"description":"The list of supported fiat fee groups","type":"array","items":{"type":"object","properties":{"code":{"type":"string","description":"A supported fiat fee group code. This is the code that is used in the API."},"label":{"type":"string","description":"A supported fiat fee group name"},"fiatCurrencies":{"type":"array","description":"The list of fiat currencies that belong to this fee group","items":{"type":"string","description":"A supported fiat currency code"}}}}},"onboarding":{"type":"object","description":"Miscellaneous onboarding-related constants","properties":{"countryCodes":{"description":"The list of supported country codes","type":"array","items":{"type":"object","properties":{"code":{"type":"string","description":"A supported country code. This is the code that is used in the API."},"label":{"type":"string","description":"A supported country name"}}}},"individualOccupations":{"type":"array","description":"The list of supported individual occupations","items":{"type":"object","properties":{"code":{"type":"string","description":"A supported individual occupation code"},"label":{"type":"string","description":"A supported individual occupation name"}}}},"jobBusinessSectors":{"type":"array","description":"The list of supported job business sectors","items":{"type":"object","properties":{"code":{"type":"string","description":"A supported job business sector code"},"label":{"type":"string","description":"A supported job business sector name"}}}},"annualRevenueRanges":{"type":"array","description":"The list of supported annual revenue ranges","items":{"type":"object","properties":{"code":{"type":"string","description":"A supported annual revenue range code"},"label":{"type":"string","description":"A supported annual revenue range name"}}}},"globalWealthRanges":{"type":"array","description":"The list of supported global wealth ranges","items":{"type":"object","properties":{"code":{"type":"string","description":"A supported global wealth range code"},"label":{"type":"string","description":"A supported global wealth range name"}}}},"individualPurposesOfOnboarding":{"type":"array","description":"The list of supported individual purposes of onboarding","items":{"type":"object","properties":{"code":{"type":"string","description":"A supported individual purpose of onboarding code"},"label":{"type":"string","description":"A supported individual purpose of onboarding name"}}}},"entityPurposesOfOnboarding":{"type":"array","description":"The list of supported entity purposes of onboarding","items":{"type":"object","properties":{"code":{"type":"string","description":"A supported entity purpose of onboarding code"},"label":{"type":"string","description":"A supported entity purpose of onboarding name"}}}},"sourceOfFunds":{"type":"array","description":"The list of supported sources of funds","items":{"type":"object","properties":{"code":{"type":"string","description":"A supported source of funds code"},"label":{"type":"string","description":"A supported source of funds name"}}}}}}}}}}},"401":{"description":"Invalid API key"},"500":{"description":"Internal server error"}}}}}}
```
