Skip to main content

List Token Transactions

Retrieves a list of transactions for a specific token with pagination support.

Request

POST /v2/admin/token/{token_id}/transactions/search

Parameters

NameTypeInDescription
token_idstringpathRequired. The ID of the token to search transactions for
pagenumberbodyOptional. Page number for pagination (default: 1)
per_pagenumberbodyOptional. Number of items per page (default: 20)

Headers

NameDescription
AuthorizationRequired. Bearer token for authentication
Content-TypeRequired. Must be application/json

Example

curl --request POST \
--url '\{\{baseUrl\}\}/v2/admin/token/67d8774e903bfcbe7eb5d93e/transactions/search' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...' \
--header 'Content-Type: application/json' \
--data '{
"page": 1,
"per_page": 20
}'

Response

{
"data": [
{
"id": "67d8774f903bfcbe7eb5d941",
"node_id": "67d6c447f47ff3adafda700d",
"user_id": "665b372f3a72d7d0791596ba",
"token_id": "67d8774e903bfcbe7eb5d93e",
"hash": "0x998a217061da05cf1bf1998470613a488b10908f0964e76a123c4063f91d77c4",
"type": 1,
"status": 3,
"error": null,
"created_at": "2025-03-17T19:26:07.042Z"
}
],
"total": 1,
"page": 1,
"per_page": 20
}

Status Codes

Status CodeDescription
200Success
400Bad Request - Invalid parameters
401Unauthorized - Invalid or missing authentication token
404Not Found - Token ID does not exist
500Internal Server Error

Transaction Types

Type IDNameDescription
1CreateTokenizationCreating a new token
2TokenListingListing a token for sale
3TokenRentRenting a token
4UpdateTokenSupplyUpdating the token supply
5UpdateTokenUpdating token information
6DelistTokenRemoving a token from listing
7PassiveTokenSetting a token to passive state
8PublicTransferTokenTransferring a token publicly
9ChangeTokenLaunchpadAddressChanging the token's launchpad address
10BurnTokenBurning/destroying a token
11OpenToSecondaryMarketOpening a token to the secondary market

Transaction Status

Status IDNameDescription
1StartedTransaction request has been submitted
2InProgressTransaction is being processed
3DoneTransaction completed successfully
4ErrorTransaction failed