---
title: "Get Quote"
api: "POST /api/v1/transfers/quote"
description: "Retrieve a real-time exchange rate and fee breakdown for an offramp."
---

### Body

<ParamField body="amount" type="number" required>
  The amount of crypto you want to send.
</ParamField>

<ParamField body="asset" type="string" default="base:usdc">
  The asset ID from the `/tokens` endpoint.
</ParamField>

<ParamField body="currency" type="string" default="NGN">
  The payout fiat currency.
</ParamField>

<ParamField body="country" type="string" default="NG">
  The ISO country code (e.g., 'NG').
</ParamField>

<ParamField body="channel" type="string" default="BANK">
  The payout channel (e.g., 'BANK').
</ParamField>

### Response

<ResponseField name="success" type="boolean" />
<ResponseField name="quote" type="object">
  <Expandable title="properties">
    <ResponseField name="rate" type="number">
      The exchange rate used.
    </ResponseField>
    <ResponseField name="output_amount" type="number">
      The final amount of fiat the user will receive.
    </ResponseField>
    <ResponseField name="fee" type="number">
      The service fee charged.
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
```bash
curl --request POST \
     --url https://your-api-domain.com/api/v1/transfers/quote \
     --header 'x-api-key: <api-key>' \
     --header 'Content-Type: application/json' \
     --data '{
  "amount": 100,
  "asset": "base:usdc",
  "currency": "NGN"
}'
```
</RequestExample>
