Get USDC Transactions
GET/users/:id/transactions/usdc
Gets the user's $USDC transaction history within the App
Request
Path Parameters
A User ID
Query Parameters
The number of items to skip. Useful for pagination (page number * limit)
The number of items to fetch
Possible values: [date, transaction_type]
Default value: date
The sort method
Possible values: [asc, desc]
Default value: desc
The sort direction
Possible values: [purchase_content, transfer, internal_transfer, prepare_withdrawal, recover_withdrawal, withdrawal, purchase_stripe]
Filters the type of transactions to show
Include intermediate system transactions in the results
Possible values: [send, receive]
Filters the method (sent/received) of transactions to show
Header Parameters
The data that was signed by the user for signature recovery
The signature of data, used for signature recovery
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
version
object
required
data
object[]
metadata
object
required
{
"latest_chain_block": 0,
"latest_indexed_block": 0,
"latest_chain_slot_plays": 0,
"latest_indexed_slot_plays": 0,
"signature": "string",
"timestamp": "string",
"version": {
"service": "string",
"version": "string"
},
"data": [
{
"transaction_date": "string",
"transaction_type": "string",
"method": "string",
"signature": "string",
"user_bank": "string",
"change": "string",
"balance": "string",
"metadata": {}
}
]
}