> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chessa.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Rate

> Overview of the Rate endpoints and functionality

# Rate

The Rate API provides access to currency exchange rates and fee information. These endpoints help you determine conversion rates between different currencies and estimate transaction fees.

## Rate Endpoints

The following endpoints are available for rate information:

* **Get Rate** - Retrieve current exchange rates between specified currencies
* **Get Estimated Fees** - Calculate estimated fees for a transaction

## Common Use Cases

* Calculating currency conversions
* Displaying exchange rates to users
* Estimating transaction costs
* Planning optimal transfer times based on rates

Fee estimation responses typically look like:

```json theme={null}
{
  "fees": {
    "feeAmount": 0.25,
    "feeCurrency": "USDC",
    "feeUsd": 0.25,
    "previousFeeUsd": 0.25
  }
}
```

For detailed information on specific endpoints, please refer to the [API Reference](/api-reference/rate/get-rate).
