GET
/
transactions
curl --request GET \
  --url https://protocol-sandbox.lumx.io/v2/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "walletId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "created",
      "transactionHash": "<string>",
      "blockExplorerUrl": "<string>",
      "result": {},
      "request": {
        "contractId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "quantity": 123
      },
      "type": "mint",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "completedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "cursor": "<string>",
    "pageSize": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <API_KEY>.

Query Parameters

cursor
string

The cursor for pagination

size
integer

The number of transactions to return

startDate
string

The start date and time for filtering the results

endDate
string

The end date and time for filtering the results

type
enum<string>

The type of the transaction

Available options:
mint,
transfer,
custom
status
enum<string>

The status of the transaction

Available options:
success,
failed,
created
contractId
string

The id of the contract

Response

200 - application/json

The list of transactions was retrieved successfully

The response is of type object.