Get a list of currencies defined in the system. You can use fiat and crypto endoints to filter the currencies
Returnes a list of active fiat and crypto currencies. Will return the name of the coin in mainnet and testnet. There is the description of the currency object down below:
Returnes a list of active fiat and crypto currencies.
Success
Unauthorized
{- "api_message": "<string>",
- "api_data": {
- "mainnet": true,
- "currencies": [
- {
- "id": "<string>",
- "mainnet": "<string>",
- "testnet": "<string>",
- "icon": "<string>",
- "entity": "<string>",
- "type": "FIAT",
- "default": true,
- "enabled": true,
- "created_at": "<datetime string>",
- "updated_at": "<datetime string>"
}
]
}
}
Returnes a list of active crypto currencies. Same as currencies but limited to crypto
Success
Unauthorized
{- "api_message": "<string>",
- "api_data": {
- "mainnet": true,
- "currencies": [
- {
- "id": "<string>",
- "mainnet": "<string>",
- "testnet": "<string>",
- "icon": "<string>",
- "entity": "<string>",
- "type": "FIAT",
- "default": true,
- "enabled": true,
- "created_at": "<datetime string>",
- "updated_at": "<datetime string>"
}
]
}
}
Returnes a list of active crypto currencies. Same as currencies but limited to fiat
Success
Unauthorized
{- "api_message": "<string>",
- "api_data": {
- "mainnet": true,
- "currencies": [
- {
- "id": "<string>",
- "mainnet": "<string>",
- "testnet": "<string>",
- "icon": "<string>",
- "entity": "<string>",
- "type": "FIAT",
- "default": true,
- "enabled": true,
- "created_at": "<datetime string>",
- "updated_at": "<datetime string>"
}
]
}
}