Get all ERC20 token mints
This guide describes how to retreive all of your ERC20 token mints.
This endpoint is used to retrieve all of your ERC20 token mint requests. You can also filter the results by to-from date, the status of mints, mintIds, contract address, and company ID.
Request Endpoint: reference
GET /api/v3/erc20/tokens/mints
Parameter | Param Type | Description | Data Type | Mandatory |
---|---|---|---|---|
companyId | Query | Query token mints linked to your company by specifying the company ID | String | ❌ |
contractAddress | Query | Filter results by contract address | String | ❌ |
destinationAddress | Query | Filter results by the destination wallet address. Partial match also works. | String | ❌ |
createdOnFrom | Query | Filter results by the start time of the interval in which the token mint request was created | String[date-time] | ❌ |
createdOnTo | Query | Filter results by the end time of the interval in which the token mint request was created | String[date-time] | ❌ |
mintIds | Query | Filter results by mintId . Multiple mintIds can be added | Array[string] | ❌ |
status | Query | Filter results by status of mints. Allowed values: - SUCCEEDED - PENDING - FAILED | String | ❌ |
page | Query | The current page number | Integer | ❌ |
size | Query | Number of items per page | Integer | ❌ |
sortOn | Query | The name of the parameter that you want to sort on | String | ❌ |
sortOrder | Query | Indication to sort in ascending or descending order | String | ❌ |
Example Request:
GET /api/v3/erc20/tokens/mints
Response Body:
{
"success": true,
"result": [
{
"id": "ea9a149f-cdad-44d6-ab0e-55a8a7490429",
"chain": "AVAC",
"contractAddress": "0xb1c62e4dc8dfab73c0fe12ba1736ddb976a485c0",
"createdOn": "2024-09-26T11:16:18.256375",
"status": "SUCCEEDED",
"transactionHash": "0x8a84df811b33f908cd31f6694ba621b9bef8e6617245970fad2d5627e8bdc1a2",
"destination": {
"address": "0x6296E346abb7Ecf72308c34de2F5a8888403a6b8",
"amount": 450
}
},
{
"id": "7f78e6ed-d733-430c-83a4-5fc28032e667",
"chain": "MATIC",
"contractAddress": "0x1e857475040b732d5adf3f8b2e7cd712914cdd23",
"createdOn": "2024-09-23T09:28:49.562087",
"status": "SUCCEEDED",
"transactionHash": "0x95dba6ba9c8bae1d3179486e00eeb778fb9d2435741226e4d98b59e38cf7e875",
"destination": {
"address": "0xf2b1cEB69E765469a80E8d4c8635B05269889fa7",
"amount": 35
}
}
]
}
Updated 18 days ago
Did this page help you?