Check token mint request

How to check the status of an ERC20 token mint request.

This endpoint is used to check the status of ERC20 token mints. The {mintId} in the path is for tracking the status of the token mint. It is in the response body of the Mint ERC20 tokens endpoint as result.mints.id.

Request Endpoint: reference

GET /api/v3/erc20/tokens/mints/{mintId}

Example Request

GET /api/v3/erc20/tokens/mints/7f78e6ed-d733-430c-83a4-5fc28032e667

Response Body

📘

In the response body look for the result.status parameter. It can have three possible values:

  • SUCCEEDED
  • PENDING
  • FAILED
{ "success": true, "result": { "id": "7f78e6ed-d733-430c-83a4-5fc28032e667", "createdOn": "2024-09-23T09:28:49.562087", "status": "SUCCEEDED", "transactionHash": "0x95dba6ba9c8bae1d3179486e00eeb778fb9d2435741226e4d98b59e38cf7e875", "destination": { "address": "0xf2b1cEB69E765469a80E8d4c8635B05269889fa7", "amount": 35 }, "contract": { "address": "0x1e857475040b732d5adf3f8b2e7cd712914cdd23", "name": "Infinity Token", "symbol": "IFT", "maxSupply": 100, "burnable": true, "owner": "0x7312750DF4d2057b758a61C7017729c6Ec9bB3E9", "type": "ERC_20" } } }

Did this page help you?