GET
/
api
/
v1
/
mint
/
estimate
Estimate mint params
curl --request GET \
  --url https://mint-manager.namespace.ninja/api/v1/mint/estimate
{
  "canMint": true,
  "estimatedPriceEth": 0.01,
  "estimatedFeeEth": 0.002,
  "isStandardFee": true,
  "validationErrors": [
    "SUBNAME_TAKEN",
    "MINTER_NOT_WHITELISTED"
  ]
}

Query Parameters

parentName
string
required

The parent name (e.g., domain) under which the label will be minted.

Required string length: 3 - 100
Example:

"example.eth"

label
string
required

The label or subname to be minted under the parent name.

Required string length: 1 - 100
Example:

"subname"

minterAddress
string
required

Ethereum address of the minter.

Example:

"0x1234567890abcdef1234567890abcdef12345678"

isTestnet
boolean

Indicates whether the operation is on a sepolia testnet.

Example:

true

Response

Estimated price, fee, and validation status for requested subname.

The response is of type object.