> For the complete documentation index, see [llms.txt](https://konnadex-docs.gitbook.io/konnadex-technologies/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://konnadex-docs.gitbook.io/konnadex-technologies/miscellaneous/rate.md).

# 💸 Rate

#### Get rate <a href="#get-rate" id="get-rate"></a>

Using this endpoint, you can get the rate of a particular coin to fiat or fiat to coin.

`GET` `https://api.konnadex.com/v1/rate`

**Query Parameters**

<table><thead><tr><th width="128.66668701171875">Name</th><th width="108.3333740234375">Type</th><th>Description</th></tr></thead><tbody><tr><td>currency*</td><td>String</td><td>The currency you're getting the coin rate on eg, <code>USD, AED, NGN, GBP, EUR</code></td></tr><tr><td>coin*</td><td>String</td><td>The coin you're getting its rate, eg <code>USDT, DAI, BUSD, USDC</code></td></tr></tbody></table>

**Headers**

<table><thead><tr><th width="123"></th><th width="105.6666259765625"></th><th></th></tr></thead><tbody><tr><td>x-api-key*</td><td>String</td><td>YOUR_PUBLIC_KEY</td></tr></tbody></table>

```
200: OK Success
```

<pre class="language-javascript"><code class="lang-javascript"><strong>{
</strong>  "message": "Rate retrieved successfully",
  "rate": 577.4,
  "status": "success",
  "statusCode": 200
}
</code></pre>
