---
title: "List one external wallet's activity"
method: GET
path: "/v1/earn/external-wallet/movements"
tags: ["Earn"]
---

# List one external wallet's activity

`GET /v1/earn/external-wallet/movements`

Returns one keyset page of the wallet's recorded deposits and withdrawals, newest first, in ledger vocabulary (`requested`, `submitted`, `confirmed`, `finalized`, `failed`; only `finalized` and `failed` are terminal). `ownerAddress` is required; a wallet outside the active partner project answers 404. Reports on money that already moved, so no provider gate applies.

## Query parameters

- `ownerAddress` string, required
- `direction` 'deposit' | 'withdrawal'
- `status` string
- `limit` integer
- `before` string

## Headers

- `x-project-id` string — Selects the active project for this request. Required for session/dashboard callers. Ignored when authenticating with an API key, whose scope is fixed to the key's project.

## Response `200`

External-wallet movement page

- object — Standard success response envelope.
  - `data` object, required
    - `ownerAddress` string, required — The external wallet: the customer's own Solana address. It signs, owns the shares, and pays the fee; SDP holds no key for it. The pattern is necessary but not sufficient — the string must additionally decode to a 32-byte public key, which no pattern can express, so a well-shaped base58 string that does not decode still answers 400.
    - `movements` object[], required — The wallet's recorded movements, newest first, in ledger vocabulary.
      - `movementId` string, required
      - `positionId` string, required
      - `provider` string, required
      - `providerReference` string, required
      - `direction` 'deposit' | 'withdrawal', required
      - `status` 'requested' | 'submitted' | 'confirmed' | 'finalized' | 'failed', required — Ledger vocabulary. `confirmed` is optimistic and can still be dropped by a fork; only `finalized` and `failed` are terminal.
      - `signature` string, required — The transaction signature, for explorers.
      - `ownerAddress` string, required — The external wallet: the customer's own Solana address. It signs, owns the shares, and pays the fee; SDP holds no key for it. The pattern is necessary but not sufficient — the string must additionally decode to a 32-byte public key, which no pattern can express, so a well-shaped base58 string that does not decode still answers 400.
      - `amount` string, required — Requested quantity, denominated in `denomination`.
      - `denomination` string, required — Token mint for a deposit; share mint for a withdrawal.
      - `failureReason` string, nullable, required
      - `createdAt` string, date-time, required — ISO 8601 timestamp.
      - `confirmedAt` string, date-time, nullable, required — ISO 8601 timestamp.
      - `settledAt` string, date-time, nullable, required — ISO 8601 timestamp.
      - `replayed` boolean — True when the idempotency key already produced this movement and nothing was re-sent.
    - `hasMore` boolean, required
    - `nextCursor` string, nullable, required
  - `meta` object, required — Response metadata.
    - `requestId` string, required — Request identifier for tracing.
    - `timestamp` string, date-time, required — ISO 8601 timestamp.

## Other responses

- `400` — Error
- `401` — Error
- `403` — Error
- `404` — Error
- `429` — Error
- `500` — Error
- `503` — Error

## Changes

- **2026-09-02** `496a0685145b` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/solana/apis/solana-developer-platform-api/changes/v1/earn/external-wallet/movements/get.md)

---

[API](https://skmtc.dev/solana/apis/solana-developer-platform-api.md) · [All operations](https://skmtc.dev/solana/apis/solana-developer-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/solana/solana-developer-platform-api/revisions/496a0685145b/schema)
