# Ticker

## Get Market Price

<mark style="color:blue;">`GET`</mark> `https://api.vaultoro.com/v1/public/ticker`

This endpoint displays the current spot price for the selected pair. Currently we support the following pairs:\
\
\- GOLDBTC\
\- GOLDDASH\
\- GOLDETH\
\- GOLDSILV\
\- DASHBTC\
\- EUROBTC\
\- EURODASH\
\- EUROETH\
\- SILVBTC\
\- SILVDASH\
\- SILVETH<br>

#### Query Parameters

| Name | Type   | Description                                   |
| ---- | ------ | --------------------------------------------- |
| pair | string | Currently supported pairs can be found above. |

{% tabs %}
{% tab title="200 Ticker successfully retrieved." %}

```
{
    "data": {
        "ask": "0.00331589",
        "bid": "0.00315971",
        "handle": "GOLDBTC"
    }
}
```

{% endtab %}
{% endtabs %}
