Transferal records
Get transferal records for the authenticated user, including both incoming and outgoing transfers with pagination. Each record has a 'direction' field indicating "incoming" or "outgoing", and a 'status' field indicating "pending" or "confirmed".
Page number for pagination, default is 1
Limit number of records per page, default is 10
Filter by transfer status: 'pending' (not yet spent) or 'confirmed' (already spent). If omitted, returns all records.
API Key
Paginated transferal records
Bad Request
Unauthorized
Internal Server Error
GET /accounts/transferal-records HTTP/1.1
Host:
X-API-KEY: text
Accept: */*
{
"data": [
{
"assets": [
{
"asset": "text",
"asset_unit": "text",
"qty": 1
}
],
"created_at": "text",
"direction": "incoming",
"status": "pending",
"transferal_type": "normal",
"tx_hash": "text"
}
],
"total_count": 1,
"total_page": 1
}
Get a single transferal record by its transaction hash. Returns the record with direction (incoming/outgoing) and status (pending/confirmed).
Transaction hash
API Key
Transferal record details
Bad Request
Unauthorized
Intent not found or intent expired
Internal Server Error
GET /accounts/transferal-records/{tx_hash} HTTP/1.1
Host:
X-API-KEY: text
Accept: */*
{
"assets": [
{
"asset": "text",
"asset_unit": "text",
"qty": 1
}
],
"created_at": "text",
"direction": "incoming",
"status": "pending",
"transferal_type": "normal",
"tx_hash": "text"
}
Last updated