---
title: "List issuance transactions"
method: GET
path: "/v1/issuance/transactions"
tags: ["Issuance"]
---

# List issuance transactions

`GET /v1/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

- `walletId` string — Filter to transactions associated with a wallet. Selected-wallet API keys must have wallet-level tokens:read for the requested wallet.
- `type` string[] — Filter by transaction type. Repeat this query parameter for multiple values, for example type=burn&type=force_burn.
- `status` 'pending' | 'processing' | 'confirmed' | 'finalized' | 'failed' — Filter by token transaction status.
- `page` integer — Page number (1-based).
- `pageSize` integer — Number of items per page.

## Headers

- `x-project-id` string — 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 `200`

Issuance transaction list

- object — Standard paginated response envelope.
  - `data` object[], required
    - `token` object, required — Token metadata for this transaction.
      - `id` string, required — Token identifier.
      - `name` string, required — Token name.
      - `symbol` string, required — Token symbol.
      - `mintAddress` string, nullable, required — Mint address once deployed.
    - `transaction` object, required — Token transaction record.
      - `id` string, required — Token transaction identifier.
      - `tokenId` string, required — Token identifier.
      - `organizationId` string, required — Organization identifier.
      - `type` 'mint' | 'burn' | 'freeze' | 'unfreeze' | 'seize' | 'force_burn' | 'update_authority' | 'pause' | 'unpause' | 'deploy', required — Transaction type.
      - `status` 'pending' | 'processing' | 'confirmed' | 'finalized' | 'failed', required — Transaction status.
      - `signature` string, nullable, required — Solana transaction signature.
      - `idempotencyKey` string — Idempotency key used for this request.
      - `idempotencyFingerprint` string — Request fingerprint used to validate idempotent retries.
      - `serializedTx` string, nullable, required — Base64-encoded transaction payload, if available.
      - `params` object, required — Operation parameters captured for audit.
      - `slot` integer, nullable, required — Slot number, if confirmed.
      - `blockTime` string, date-time, nullable, required — Block time, if confirmed.
      - `fee` integer, nullable, required — Transaction fee in lamports.
      - `error` string, nullable, required — Error message if the transaction failed.
      - `initiatedByKeyId` string, nullable, required — API key that initiated the transaction.
      - `createdAt` string, date-time, required — Creation timestamp.
      - `updatedAt` string, date-time, required — Last update timestamp.
  - `meta` object, required — Pagination metadata.
    - `total` integer, required — Total items.
    - `page` integer, required — Current page number.
    - `pageSize` integer, required — Items per page.
    - `hasMore` boolean, required — Whether more pages exist.
    - `requestId` string, required — Request identifier for tracing.

## Other responses

- `400` — Error
- `401` — Error
- `403` — Error
- `404` — Error
- `500` — Error

---

[API](https://skmtc.net/solana/apis/solana-developer-platform-api.md) · [All operations](https://skmtc.net/solana/apis/solana-developer-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/solana/solana-developer-platform-api/revisions/672b1916ba61/schema)
