---
title: "List funding events"
method: GET
path: "/v1/funding_events"
tags: ["Funding Events"]
---

# List funding events

`GET /v1/funding_events`

Retrieves a list of funding events for your account. This endpoint supports advanced sorting and filtering options.

## Query parameters

- `page_number` integer — Results page number. Starts at page 1.
- `page_size` integer — Results page size. Max value: 1000
- `sort_by` 'transfer_date' | 'id' | 'amount'
- `sort_order` 'asc' | 'desc'
- `created_from` string, date, nullable — The start date of the range to filter by using the `YYYY-MM-DD` format.
- `created_to` string, date, nullable — The end date of the range to filter by using the `YYYY-MM-DD` format.
- `direction` 'deposit' | 'withdrawal' — Describes the direction of the funding event from the perspective of the `linked_bank_account`.
- `event_type` 'charge_deposit' | 'charge_reversal' | 'payout_return' | 'payout_withdrawal' — The funding event types describes the direction and reason for the funding event.
- `trace_number` string, nullable — Trace number.
- `search_text` string, nullable — Search text.
- `status` PaymentStatusV1[], nullable — Payment status.
- `trace_id` string, nullable — Trace Id.
- `status_reason` StatusReasonV1[], nullable — Reason for latest payment status change.
- `status_source` StatusSourceV1[], nullable — Source of latest payment status change.

## Headers

- `Straddle-Account-Id` string, uuid
- `Request-Id` string
- `Correlation-Id` string

## Response `200`

OK

- FundingEventSummaryV1PagedResponse
  - `meta` PagedResponseMetadata2, required
    - `api_request_id` string, uuid, required — Unique identifier for this API request, useful for troubleshooting.
    - `api_request_timestamp` string, date-time, required — Timestamp for this API request, useful for troubleshooting.
    - `total_items` integer, required
    - `page_number` integer, required — Page number for paginated results.
    - `page_size` integer, required — Number of items per page in this response.
    - `max_page_size` integer, required — Maximum allowed page size for this endpoint.
    - `sort_by` string, required — The field that the results were sorted by.
    - `sort_order` 'asc' | 'desc', required
    - `total_pages` integer, required — The number of pages available.
  - `response_type` 'object' | 'array' | 'error' | 'none', required — Indicates the structure of the returned content. - "object" means the `data` field contains a single JSON object. - "array" means the `data` field contains an array of objects. - "error" means the `data` field contains an error object with details of the issue. - "none" means no data is returned.
  - `data` FundingEventSummaryV1[], required
    - `id` string, uuid, required — Unique identifier for the funding event.
    - `amount` integer, required — The amount of the funding event in cents.
    - `direction` 'deposit' | 'withdrawal', required — Describes the direction of the funding event from the perspective of the `linked_bank_account`.
    - `event_type` 'charge_deposit' | 'charge_reversal' | 'payout_return' | 'payout_withdrawal', required — The funding event types describes the direction and reason for the funding event.
    - `trace_number` string, nullable — The trace number of the funding event.
    - `payment_count` integer, required — The number of payments associated with the funding event.
    - `transfer_date` string, date, required — The date on which the funding event occurred. For `deposits` and `returns`, this is the date the funds were credited to your bank account. For `withdrawals` and `reversals`, this is the date the funds were debited from your bank account.
    - `trace_numbers` string[], required — Trace number.
    - `created_at` string, date-time, required — Created at.
    - `updated_at` string, date-time, required — Updated at.
    - `trace_ids` object, required — Trace Ids.
    - `status` 'created' | 'scheduled' | 'failed' | 'cancelled' | 'on_hold' | 'pending' | 'paid' | 'reversed' | 'validating' — The current status of the `charge` or `payout`.
    - `status_details` StatusDetailsV1
      - `message` string, required — A human-readable description of the current status.
      - `reason` 'insufficient_funds' | 'closed_bank_account' | 'invalid_bank_account' | 'invalid_routing' | 'disputed' | 'payment_stopped' | 'owner_deceased' | 'frozen_bank_account' | 'risk_review' | 'fraudulent' | 'duplicate_entry' | 'invalid_paykey' | 'payment_blocked' | 'amount_too_large' | 'too_many_attempts' | 'internal_system_error' | 'user_request' | 'ok' | 'other_network_return' | 'payout_refused' | 'cancel_request' | 'failed_verification' | 'require_review' | 'blocked_by_system' | 'watchtower_review' | 'validating' | 'auto_hold', required
      - `source` 'watchtower' | 'bank_decline' | 'customer_dispute' | 'user_action' | 'system', required
      - `code` string, nullable — The status code if applicable.
      - `changed_at` string, date-time, required — The time the status change occurred.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Validation Failed
- `500` — Server Error

---

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