# Get all currencies

## Fetch all currencies

> Fetch all supported currencies.

```json
{"openapi":"3.0.1","info":{"title":"OpenAPI definition","version":"v0"},"servers":[{"url":"https://api.finrax.com","description":"Generated server url"}],"paths":{"/v1/currencies":{"get":{"summary":"Fetch all currencies","description":"Fetch all supported currencies.","operationId":"fetch-currencies","responses":{"200":{"description":"Returns the supported currencies.","content":{"application/json":{"schema":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/CurrencyDetailsResponse"}}}}}}}}},"components":{"schemas":{"CurrencyDetailsResponse":{"required":["abbreviation","isERC20","isFiat","model","name"],"type":"object","properties":{"abbreviation":{"type":"string","description":"Currency code."},"name":{"type":"string","description":"Currency full name."},"model":{"type":"string","description":"Currency model.","enum":["FIAT","ACCOUNT","UTXO"]},"supportedNetworks":{"uniqueItems":true,"type":"array","description":"Supported networks, if this is a cryptocurrency.","items":{"type":"string","description":"Supported networks, if this is a cryptocurrency.","enum":["BCH","BTC","LTC","XLM","XRP","ETH","BSC","SOL","TRX"]}},"defaultNetwork":{"type":"string","description":"Default network, if this is a cryptocurrency.","enum":["BCH","BTC","LTC","XLM","XRP","ETH","BSC","SOL","TRX"]},"isFiat":{"type":"boolean","description":"True for fiat currencies, otherwise false."},"isERC20":{"type":"boolean","description":"True for ERC-20 tokens, otherwise false."}}}}}}
```
