TIWICAT Token API

Real-time token supply data for TIWICAT (TWC) on Binance Smart Chain

About

This API provides up-to-date supply information for the TIWICAT token (TWC) deployed on Binance Smart Chain. Data is cached for 1 minute to ensure optimal performance while maintaining accuracy.

Available Endpoints

GET/api/total-supply

Returns the total supply of TIWICAT tokens.

{
  "name": "TIWICAT",
  "symbol": "TWC",
  "chain": "Binance-Smart-Chain",
  "decimals": 18,
  "total_supply": "1000000000.0",
  "updated_at": "2024-01-01T00:00:00.000Z"
}
GET/api/circulating-supply

Returns the circulating supply of TIWICAT tokens (total supply minus excluded wallets).

{
  "name": "TIWICAT",
  "symbol": "TWC",
  "chain": "Binance-Smart-Chain",
  "decimals": 18,
  "total_supply": "1000000000.0",
  "circulating_supply": "950000000.0",
  "updated_at": "2024-01-01T00:00:00.000Z"
}

Usage Example

// Fetch total supply
const response = await fetch('https://your-domain.com/api/total-supply');
const data = await response.json();
console.log(data.total_supply);

// Fetch circulating supply
const circResponse = await fetch('https://your-domain.com/api/circulating-supply');
const circData = await circResponse.json();
console.log(circData.circulating_supply);

Token Address: 0xDA1060158F7D593667cCE0a15DB346BB3FfB3596

Built with Next.js and ethers.js