List related transactions for a position
Returns enriched transaction history for a staking position with cursor-based pagination. Includes in-flight transactions with status pending. The in-flight transaction is always returned first; completed and failed history is ordered by the order parameter.
Path Parameters
Unique identifier of the staking position.
Query Parameters
Number of results per page (minimum: 1, maximum: 100).
1 <= x <= 10010
Cursor for the next page of results. Use the value from the 'next' field in the previous response.
"eJ0eXAiOiJKV1QiLCJhbGcOiJIUzI1NiJ9"
ASC / DESC ordering for completed/failed history (default DESC). The in-flight transaction is always returned first.
ASC, DESC "ASC"
Response
Paginated list of related transactions for the position returned successfully.
The related transactions for the current page.
[
{
"txId": "b70601f4-d7b1-4795-a8ee-b09cdb4r850d",
"txHash": "0xabc123...",
"stakingOperation": "STAKE",
"timestamp": "2024-01-15T10:30:00.000Z",
"status": "COMPLETED",
"amount": "32"
}
]Cursor for the next page. Use this value in the pageCursor parameter to fetch the next page. Null if no more pages.
"eJ0eXAiOiJKV1QiLCJhbGcOiJIUzI1NiJ9"