Tokenverse API

Power your dApps with the decentralized token platform's comprehensive API toolkit for minting, analytics, and security operations.

Explore Endpoints

Core API Capabilities

Smart Contract APIs

Deploy and manage token contracts with programmable access to contract lifecycle operations.

Analytics APIs

Access real-time liquidity metrics, holder distribution, and market activity across blockchain networks.

Security APIs

Integrate code audit endpoints, phishing detection, and contract validation tools into your workflows.

Available Endpoints

Authentication

POST /auth/token
{
  "client_id": "your_project_id",
  "private_key": "hex_encoded_key"
}

Obtain JWT token for API authentication

Authorization: Bearer {token}

Tokens expire in 24 hours

Token Operations

POST /tokens/mint
{
  "contract_type": "ERC-20",
  "name": "MyToken",
  "symbol": "MTK",
  "decimals": 18,
  "initial_supply": "1000000000000000000"
}

Mints new tokens with EVM chain defaults

GET /tokens/{address}/analytics

Retrieve analytics data for any token address

curl -X GET 'https://api.tokensverse.com/v2/tokens/0x1234/analytics'
POST /tokens/{address}/audit

Initiates contract security audit process

curl -X POST 'https://api.tokensverse.com/v2/tokens/0x1234/audit' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN'