672b1916ba61
List issuance transactions
Lists issuance transactions across tokens for the current organization or project. Selected-wallet API keys are scoped to their token-readable wallet bindings when walletId is omitted. Use repeated type query parameters, for example type=burn&type=force_burn, to request multiple transaction types.
Query parameters
Filter to transactions associated with a wallet. Selected-wallet API keys must have wallet-level tokens:read for the requested wallet.
Filter to transactions associated with a wallet. Selected-wallet API keys must have wallet-level tokens:read for the requested wallet.
Filter by transaction type. Repeat this query parameter for multiple values, for example type=burn&type=force_burn.
Filter by transaction type. Repeat this query parameter for multiple values, for example type=burn&type=force_burn.
[ "burn", "force_burn" ]
Filter by token transaction status.
Filter by token transaction status.
Page number (1-based).
Page number (1-based).
Number of items per page.
Number of items per page.
Headers
Selects the active project for this request. Required for session/dashboard callers. Ignored when authenticating with an API key, whose scope is fixed to the key's project.
Selects the active project for this request. Required for session/dashboard callers. Ignored when authenticating with an API key, whose scope is fixed to the key's project.
Response
Issuance transaction list
Example response
{
"data": [
{
"token": {
"id": "tok_example",
"name": "Example Token",
"symbol": "EXM"
},
"transaction": {
"id": "ttx_example",
"tokenId": "tok_example",
"organizationId": "org_example",
"type": "mint",
"status": "confirmed",
"signature": "sig_example",
"idempotencyKey": "idem_example_12345",
"idempotencyFingerprint": "4f2d9c7a5e6f1c...",
"serializedTx": "AQID",
"slot": 123456,
"blockTime": "2025-01-01T00:00:00.000Z",
"fee": 5000,
"error": "Signature failed",
"initiatedByKeyId": "key_example",
"createdAt": "2025-01-01T00:00:00.000Z",
"updatedAt": "2025-01-02T00:00:00.000Z"
}
}
],
"meta": {
"requestId": "req_example"
}
}