GET
/
1
/
wallet
/
deployer
Get Wallet Deployer
curl --request GET \
  --url https://explorer-api.mobula.io/api/1/wallet/deployer
{
  "data": [
    {
      "name": "<string>",
      "blockchain": "<string>",
      "address": "<string>",
      "symbol": "<string>",
      "decimals": 123,
      "listedAt": "<string>",
      "createdAt": "<string>",
      "holdersCount": 123,
      "logo": "<string>",
      "volume24h": 123,
      "price": 123,
      "marketCap": 123,
      "marketCapDiluted": 123,
      "bonded": true,
      "bondingPercentage": 123,
      "bondingCurveAddress": "<string>",
      "totalFeesPaidUSD": 123,
      "top10Holdings": 123,
      "devHoldings": 123,
      "insidersHoldings": 123,
      "bundlersHoldings": 123,
      "snipersHoldings": 123,
      "atlToken0": 123,
      "atlToken1": 123,
      "athToken0": 123,
      "athToken1": 123,
      "atlDateToken0": "<string>",
      "atlDateToken1": "<string>",
      "athDateToken0": "<string>",
      "athDateToken1": "<string>"
    }
  ],
  "pagination": {
    "total": 123,
    "page": 123,
    "offset": 123,
    "limit": 123
  }
}

Query Details

ParameterRequiredDescription
walletYesWallet address to query.
blockchainNoBlockchain name or ID (e.g., ethereum). Defaults to all.
pageNoPage number for pagination.
limitNoResults per page.

Usage Examples

  • Get Deployer Tokens on Mega Testnet with Limit 1000
curl -X GET "explorer-api.mobula.io/api/1/wallet/deployer?blockchain=mega+testnet&limit=100&wallet=0x30eec751b76c1f903fda15f92357f6653fe2d6fa"

Query Response

This API returns the list of tokens deployed by the wallet and includes enriched metadata for each token such as:
  • bonded: Indicates if the token is bonded in a liquidity pool.
  • devHolding: Developer wallet holding details.
  • verified: Whether the token is verified.
  • holders: Total number of holders.
  • volume: Recent volume stats.
  • All-time statistics for both tokens:
    • All-time high (ATH) price and date
    • All-time low (ATL) price and date

Query Parameters

wallet
string
required
blockchain
string
page
string
default:1
limit
string
default:20

Response

200 - application/json

Wallet Deployer response

The response is of type object.