v33

latestOpenAPI 3.1.0raw.githubusercontent.com2026-04-1770249709.0 KB
Funding Events

List funding events

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

get/v1/funding_events

Query parameters

page_numberinteger

Results page number. Starts at page 1.

Results page number. Starts at page 1.

page_sizeinteger

Results page size. Max value: 1000

Results page size. Max value: 1000

sort_by'transfer_date' | 'id' | 'amount'
sort_order'asc' | 'desc'
created_fromstring date nullable

The start date of the range to filter by using the YYYY-MM-DD format.

The start date of the range to filter by using the YYYY-MM-DD format.

created_tostring date nullable

The end date of the range to filter by using the YYYY-MM-DD format.

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_numberstring nullable

Trace number.

Trace number.

search_textstring nullable

Search text.

Search text.

statusPaymentStatusV1[] nullable

Payment status.

Funding Event status.

trace_idstring nullable

Trace Id.

Trace Id.

status_reasonStatusReasonV1[] nullable

Reason for latest payment status change.

Reason for latest payment status change.

status_sourceStatusSourceV1[] nullable

Source of latest payment status change.

Source of latest payment status change.

Headers

Straddle-Account-Idstring uuid

For use by platforms to specify an account id and set scope of a request.

Request-Idstring

Optional client generated identifier to trace and debug a request.

Correlation-Idstring

Optional client generated identifier to trace and debug a series of requests.

Response

OK

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.

Example response

{
  "data": [
    {
      "amount": 100000,
      "status_details": {
        "message": "Bank account sucesfully validated"
      }
    }
  ]
}