> For the complete documentation index, see [llms.txt](https://docs.yard.finance/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.yard.finance/api/api-documentation/get-currencies.md).

# Get Currencies

Description: This API endpoint allows you to retrieve a list of currencies supported by the Yard Finance service. The response will provide information about each currency, including their network, name and ticker.

**Request**:

> **Method**: GET
>
> **URL**: <https://api.yard.finance/v1/blockchain/currencies>

**Response**: The response will be a JSON object containing an array of currency objects. Each currency object will have the following properties:

* network: blockchain network,
* name: full token name,
* ticker: token ticker

Example Request:&#x20;

```
GET /v1/blockchain/currencies
```

Example Response:

```json
[
  {
    "network": "btc",
    "name": "Bitcoin",
    "ticker": "btc"
  },
  {
    "network": "eth",
    "name": "Ethereum",
    "ticker": "eth"
  },
  {
    "network": "bsc",
    "name": "Ethereum (Binance Smart Chain)",
    "ticker": "eth"
  }, ...
]
```
