Supported fiat currencies
Developing
GET
https://api.fbpay.cc/v1/coin_map/fiat
Get supported legal currency types#
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
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://api.fbpay.cc/v1/coin_map/fiat'
Responses
🟢200成功
application/json
Body
success
boolean
Success or not
data
array [object {7}]
required
name
string
required
key
string
required
currencySymbol
string
required
symbol
string
required
decimal
integer
required
mini
string
Maximum value accepted
max
string | integer
Minimum value accepted
message
string
required
Example
{
"success": true,
"data": [
{
"name": "HKD",
"key": "hkd",
"currencySymbol": "$",
"symbol": "HKD",
"decimal": 2,
"mini": "30",
"max": "500"
},
{
"name": "CNY",
"key": "cny",
"currencySymbol": "¥",
"symbol": "CNY",
"decimal": 2,
"mini": "30",
"max": "500"
},
{
"name": "USD",
"key": "usd",
"currencySymbol": "$",
"symbol": "USD",
"decimal": 2,
"mini": "",
"max": ""
},
{
"name": "EUR",
"key": "eur",
"currencySymbol": "€",
"symbol": "EUR",
"decimal": 2,
"mini": "",
"max": ""
},
{
"name": "GBP",
"key": "gbp",
"currencySymbol": "£",
"symbol": "GBP",
"decimal": 2,
"mini": "",
"max": 350
}
],
"message": "success"
}
Modified at 2024-05-08 06:06:21