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
| Name | Type | In | Description |
|---|---|---|---|
token_id | string | path | Required. The ID of the token to search transactions for |
page | number | body | Optional. Page number for pagination (default: 1) |
per_page | number | body | Optional. Number of items per page (default: 20) |
Headers
| Name | Description |
|---|---|
Authorization | Required. Bearer token for authentication |
Content-Type | Required. 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 Code | Description |
|---|---|
| 200 | Success |
| 400 | Bad Request - Invalid parameters |
| 401 | Unauthorized - Invalid or missing authentication token |
| 404 | Not Found - Token ID does not exist |
| 500 | Internal Server Error |
Transaction Types
| Type ID | Name | Description |
|---|---|---|
| 1 | CreateTokenization | Creating a new token |
| 2 | TokenListing | Listing a token for sale |
| 3 | TokenRent | Renting a token |
| 4 | UpdateTokenSupply | Updating the token supply |
| 5 | UpdateToken | Updating token information |
| 6 | DelistToken | Removing a token from listing |
| 7 | PassiveToken | Setting a token to passive state |
| 8 | PublicTransferToken | Transferring a token publicly |
| 9 | ChangeTokenLaunchpadAddress | Changing the token's launchpad address |
| 10 | BurnToken | Burning/destroying a token |
| 11 | OpenToSecondaryMarket | Opening a token to the secondary market |
Transaction Status
| Status ID | Name | Description |
|---|---|---|
| 1 | Started | Transaction request has been submitted |
| 2 | InProgress | Transaction is being processed |
| 3 | Done | Transaction completed successfully |
| 4 | Error | Transaction failed |