latestOpenAPI 3.0.32026-08-20146131.7 MB
672b1916ba61
Issuance
List token transactions
Lists token transactions for an issued token.
get/v1/issuance/tokens/{tokenId}/transactions
Path parameters
tokenIdstring required
Token identifier.
Example:tok_example
Token identifier.
Query parameters
type'mint' | 'burn' | 'freeze' | 'unfreeze' | 'seize' | 'force_burn' | 'update_authority' | 'pause' | 'unpause' | 'deploy'
Filter by token transaction type.
Example:burn
Filter by token transaction type.
status'pending' | 'processing' | 'confirmed' | 'finalized' | 'failed'
Filter by token transaction status.
Example:confirmed
Filter by token transaction status.
pageinteger
Page number (1-based).
Example:1
Page number (1-based).
pageSizeinteger
Number of items per page.
Example:50
Number of items per page.
Headers
x-project-idstring
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.
Example:prj_example
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
Token transactions
Example response
{
"data": [
{
"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"
}
}