---
title: "Get max transferable amount"
method: GET
path: "/api/v1/money/transferable-balance"
tags: ["Transfer"]
---

# Get max transferable amount

`GET /api/v1/money/transferable-balance`

**Rate limit:** 60 requests per 60 seconds. This is the **default shared quota** — it is shared with every other endpoint that has no dedicated limit, so requests across those endpoints all draw from the same budget.

---

Returns the maximum amount the customer may transfer from the specified source account to the specified destination account.

## Query parameters

- `sourceAccountType` 'trading' | 'options' | 'cash' | 'moneyFarm', required
- `sourceAccountId` string, required
- `destinationAccountType` 'trading' | 'options' | 'cash' | 'moneyFarm', required
- `destinationAccountId` string, required

## Headers

- `x-request-id` string, uuid, required
- `x-api-key` string, password, required
- `x-user-key` string, password, required

## Response `200`

Transferable amount and account identifiers for the route.

- TransferableBalanceResponse — Transferable balance for a source/destination account pair
  - `sourceAccount` TransferAccountRef, required — Account identifier for a transfer participant
    - `accountType` 'trading' | 'options' | 'cash' | 'moneyFarm', required
    - `accountId` string, required — Account identifier
  - `destinationAccount` TransferAccountRef, required — Account identifier for a transfer participant
    - `accountType` 'trading' | 'options' | 'cash' | 'moneyFarm', required
    - `accountId` string, required — Account identifier
  - `transferableAmount` number, double, required — Maximum amount the user may transfer on this route in Currency.
  - `currency` string, required — ISO 4217 alphabetic currency code for transferableAmount.
  - `amountInUsd` number, double, required — transferableAmount expressed in USD for display or analytics.
  - `exchangeRate` number, double, required — Raw FX rate used to derive amountInUsd from the amount in currency.

## Other responses

- `400` — Bad request (missing or invalid query parameters).
- `401` — Unauthorized
- `403` — Forbidden
- `404` — No transferable amount / accounts not found for the pair.
- `429` — Too Many Requests — the shared rate limit (60 requests / 60s) was exceeded.
- `500` — Server error

---

[API](https://skmtc.net/etoro/apis/etoro-api.md) · [All operations](https://skmtc.net/etoro/apis/etoro-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/etoro/etoro-api/revisions/69c1fb266c35/schema)
