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

# Get a User's Wallet Activity

> Get the money in-and-out history for a user's **primary** wallet.

A user can hold several wallets per currency; this reads the one flagged
primary. Defaults to ``USD`` — pass ``?currency=`` to select a different
currency's primary.

You get back:

- **Balances** — ``available`` (spendable now), ``outbound_pending`` (money
  leaving that hasn't cleared), ``inbound_pending`` (money arriving that
  hasn't cleared), and ``current`` (the overall balance).
- **Activity list** — one entry per payment, newest first. Each entry has a
  short description of what happened, its status, the amount, whether it was
  money in or money out (``amount_sign``), and the date and time.

The user must belong to your platform. Returns 404 if the user has no
primary wallet in the requested currency.



## OpenAPI

````yaml GET /v1/platform/wallets/{user_id}/activity
openapi: 3.1.0
info:
  title: Finogate Platform API v1
  version: 0.1.0
servers:
  - url: https://api-sandbox.finogates.com
    description: Sandbox
  - url: https://api.finogates.com
    description: Production
security: []
tags:
  - name: auth
  - name: users
  - name: payees
  - name: verification
  - name: bank accounts
  - name: card processing
  - name: digital-assets
  - name: international
  - name: fees
  - name: onboarding
  - name: pending-applications
  - name: wallets
  - name: payments
  - name: document mailing
  - name: merchant onboarding
  - name: catalog
  - name: webhooks
  - name: screening
  - name: Platform - File Scanning
  - name: phone-numbers
  - name: sms
  - name: calls
  - name: listings
  - name: Card Transfers
  - name: embed-tokens
paths:
  /v1/platform/wallets/{user_id}/activity:
    get:
      tags:
        - wallets
      summary: Get a User's Wallet Activity
      description: >-
        Get the money in-and-out history for a user's **primary** wallet.


        A user can hold several wallets per currency; this reads the one flagged

        primary. Defaults to ``USD`` — pass ``?currency=`` to select a different

        currency's primary.


        You get back:


        - **Balances** — ``available`` (spendable now), ``outbound_pending``
        (money
          leaving that hasn't cleared), ``inbound_pending`` (money arriving that
          hasn't cleared), and ``current`` (the overall balance).
        - **Activity list** — one entry per payment, newest first. Each entry
        has a
          short description of what happened, its status, the amount, whether it was
          money in or money out (``amount_sign``), and the date and time.

        The user must belong to your platform. Returns 404 if the user has no

        primary wallet in the requested currency.
      operationId: get_wallet_activity_v1_platform_wallets__user_id__activity_get
      parameters:
        - name: user_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            description: The unique ID of the user whose wallet activity you want.
            examples:
              - b3a9b622-cc63-4d3c-aad6-2d8e29e6f9d4
            title: User Id
          description: The unique ID of the user whose wallet activity you want.
        - name: currency
          in: query
          required: false
          schema:
            type: string
            minLength: 3
            maxLength: 3
            description: ISO 4217 currency code of the primary wallet to read.
            default: USD
            title: Currency
          description: ISO 4217 currency code of the primary wallet to read.
      responses:
        '200':
          description: The primary wallet's balance breakdown and recent activity.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommonResponse'
              example:
                status_code: 200
                data:
                  balances:
                    available: 1000
                    outbound_pending: 0
                    inbound_pending: 200
                    current: 1200
                  rows:
                    - intent_id: d4e5f6a7-b8c9-0123-4567-89abcdef0123
                      journey: Bank to Wallet Settled
                      status: succeeded
                      created_at: '2026-06-01T14:05:00Z'
                      amount: 500
                      amount_sign: 1
                      available_balance_at_creation: 500
                      last_event_at: '2026-06-01T14:07:12Z'
                      currency: USD
                    - intent_id: e5f6a7b8-c9d0-1234-5678-9abcdef01234
                      journey: Wallet to Bank Settled
                      status: succeeded
                      created_at: '2026-05-28T09:12:00Z'
                      amount: 120
                      amount_sign: -1
                      available_balance_at_creation: 620
                      last_event_at: '2026-05-28T09:15:40Z'
                      currency: USD
                query_generated_time: 1712847600000
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - _AuthenticatedBearer: []
components:
  schemas:
    CommonResponse:
      properties:
        status_code:
          type: integer
          title: Status Code
          description: HTTP status code for the response.
        data:
          title: Data
          description: Payload or error details.
        query_generated_time:
          type: integer
          title: Query Generated Time
          description: >-
            UTC timestamp (milliseconds since epoch) when response was
            generated.
      type: object
      required:
        - status_code
        - data
        - query_generated_time
      title: CommonResponse
      description: |-
        Standard response wrapper for single-object responses and errors.

        Generic over the payload type. A route that declares
        ``CommonResponse[SomeModel]`` gets the real ``data`` schema rendered in
        OpenAPI/Swagger; a bare ``CommonResponse`` leaves ``data`` untyped.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    _AuthenticatedBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: /v1/platform/auth/token

````