Skip to main content
GET
List Transactions
Endpoint: GET https://api.rebelfi.io/v1/ramp/transactions
List ramp transactions with optional filters for recipient, status, and date range.

Query Parameters

FieldTypeRequiredDescription
ramp_recipient_idintegerNoFilter by recipient ID
statusstringNoFilter by status (pending, processing, in_progress, awaiting_confirmation, broadcasted, completed, failed, rejected, reversed)
date_fromstringNoStart date filter (ISO 8601)
date_tostringNoEnd date filter (ISO 8601)
pageintegerNoPage number (default: 1)
per_pageintegerNoResults per page (default: 20, max: 100)

Example Request

Example Response

Response Fields

FieldTypeDescription
dataarrayArray of transaction objects
data[].idnumberTransaction identifier
data[].ramp_recipient_idnumberAssociated recipient ID
data[].ramp_recipient_namestringRecipient name
data[].usd_amountnumberUSD amount of the transaction
data[].total_feenumberTotal fees charged
data[].developer_feenumberDeveloper fee portion
data[].delivered_amountnumberAmount delivered after fees
data[].statusstringCurrent transaction status
data[].status_historyarrayArray of status transitions
data[].status_history[].statusstringStatus at this point
data[].status_history[].timestampstringWhen the status changed (ISO 8601)
data[].created_atstringCreation timestamp (ISO 8601)
data[].completed_atstring?Completion timestamp (ISO 8601), null if not completed
paginationobjectPagination metadata
pagination.pagenumberCurrent page
pagination.per_pagenumberResults per page
pagination.totalnumberTotal number of results