---
title: "List transfers by reference ID"
method: GET
path: "/api/v1/money/transfers:lookup"
tags: ["Transfer"]
---

# List transfers by reference ID

`GET /api/v1/money/transfers:lookup`

**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 a list of transfers for the authenticated customer, keyed by the client requestReferenceId query parameter.

## Query parameters

- `requestReferenceId` string, required

## Headers

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

## Response `200`

List of transfers in results array (zero or more TransferLookupResponse). Empty results when no transfer matches — not 404.

- TransferLookupResult
  - `results` TransferLookupResponse[], required — List of transfers matching the lookup (zero or more). Empty if none match.
    - `id` integer, required
    - `status` string, required — Transfer-level status (product-defined strings, e.g. pending, completed, failed).
    - `statusReason` string, required
    - `referenceId` string, required
    - `amount` number, double, required
    - `currency` string, required — ISO 4217 alphabetic code.
    - `created` string, date-time, required
    - `modified` string, date-time, required
    - `destination` TransferLookupDestination, required
      - `destinationAccount` LookupAccountIdentifier, required
        - `accountType` 'trading' | 'options' | 'cash' | 'moneyFarm', required
        - `accountId` string, required
      - `accountCurrency` string
      - `exchangeRate` number, double
      - `exchangeFeeInAccountCurrency` number, double — Exchange fee amount in accountCurrency for this leg.
      - `accountReferenceId` string — Reference identifier for the transaction amount posted on this leg's sub-account (omit or empty when not applicable).
    - `source` TransferLookupSource, required
      - `sourceAccount` LookupAccountIdentifier, required
        - `accountType` 'trading' | 'options' | 'cash' | 'moneyFarm', required
        - `accountId` string, required
      - `accountCurrency` string
      - `exchangeRate` number, double
      - `exchangeFeeInAccountCurrency` number, double — Exchange fee amount in accountCurrency for this leg.
      - `accountReferenceId` string — Reference identifier for the transaction amount posted on this leg's sub-account (omit or empty when not applicable).
      - `holdReferenceId` string

## Other responses

- `400` — Missing or invalid requestReferenceId.
- `401` — Unauthorized
- `403` — Forbidden
- `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)
