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

# Get All Fiat-to-Fiat Quotes

> Get exchange rate quotes from all available routes for a fiat-to-fiat transfer

Returns an every available quote for converting one fiat currency to another. Useful for comparing rates.

## Query parameters

<ParamField query="sourceCurrency" type="string" required>
  ISO 4217 currency code for the source currency (e.g. `USD`, `EUR`, `GBP`).
</ParamField>

<ParamField query="targetCurrency" type="string" required>
  ISO 4217 currency code for the target currency (e.g. `MXN`, `NGN`, `BRL`).
</ParamField>

<ParamField query="amount" type="number" required>
  The amount in the source currency to convert.
</ParamField>

## Response

Returns an array of quote objects.

<ResponseField name="quotes" type="array">
  <Expandable title="Quote object">
    <ResponseField name="fromCcy" type="string">
      Source currency code.
    </ResponseField>

    <ResponseField name="toCcy" type="string">
      Target currency code.
    </ResponseField>

    <ResponseField name="fromAmount" type="number">
      Amount in the source currency.
    </ResponseField>

    <ResponseField name="toAmount" type="number">
      Amount the recipient will receive in the target currency.
    </ResponseField>

    <ResponseField name="exchangeRate" type="number">
      The raw exchange rate before fees.
    </ResponseField>

    <ResponseField name="effRate" type="number">
      The effective exchange rate after fees are applied.
    </ResponseField>

    <ResponseField name="provider" type="string">
      Opaque routing identifier.
    </ResponseField>

    <ResponseField name="fee" type="number">
      Total fee charged for the conversion.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "fromCcy": "USD",
      "toCcy": "MXN",
      "fromAmount": 1000,
      "toAmount": 17250.50,
      "exchangeRate": 17.35,
      "effRate": 17.25,
      "provider": "provider_a",
      "fee": 5.00
    },
    {
      "fromCcy": "USD",
      "toCcy": "MXN",
      "fromAmount": 1000,
      "toAmount": 17100.00,
      "exchangeRate": 17.30,
      "effRate": 17.10,
      "provider": "provider_b",
      "fee": 8.50
    }
  ]
  ```
</ResponseExample>
