API Available

FogoTools API

Build powerful applications on Fogo Network with our comprehensive API. Access real-time blockchain data, airdrop intelligence, token analytics, and network statistics.

Base URL: https://fogotools.smartcoded.xyz/api/v1

API Endpoints

Comprehensive endpoints for Fogo blockchain development

GET /allocation/check/{address}

Check FOGO airdrop allocation and claim status for any wallet

address: string returns: allocation, claimed, status
GET /airdrop/claimers

Get real-time list of airdrop claimers with amounts and timestamps

limit: number offset: number
GET /airdrop/stats

Airdrop statistics: total claimed, claimers count, sell pressure

returns: totalClaimed, totalClaimers, sellPressure
GET /tokens/{mint}

Get detailed token information including metadata and holder stats

mint: string returns: name, symbol, supply, holders
GET /tokens/{mint}/holders

Get top token holders with balances and percentages

limit: number returns: address, balance, percentage
GET /network/stats

Real-time Fogo network statistics and performance metrics

returns: tps, slot, blockTime, validators
GET /wallet/{address}/portfolio

Get complete wallet portfolio with all token holdings

address: string returns: tokens[], nfts[], balance
POST /webhooks/register

Register webhooks for real-time event notifications

url: string events: string[]
// FogoTools API - Check Airdrop Allocation
const API_BASE = 'https://fogotools.smartcoded.xyz/api/v1';

async function checkAllocation(walletAddress) {
  const response = await fetch(
    `${API_BASE}/allocation/check/${walletAddress}`,
    {
      headers: {
        'X-API-Key': 'YOUR_API_KEY',
        'Content-Type': 'application/json'
      }
    }
  );
  return await response.json();
}

// Example usage
const result = await checkAllocation('7xK3...mP2q');
console.log('Allocation:', result.allocation);
console.log('Claimed:', result.claimed);
console.log('Status:', result.status);

API Features

Everything you need to build on Fogo

Real-Time Data

Access live blockchain data with sub-second latency directly from Fogo mainnet RPC.

🎯

Airdrop Intelligence

Track claimers, analyze sell pressure, detect manipulation patterns in real-time.

📊

Token Analytics

Holder distribution, top holders, transfer history, and market metrics.

🔔

Webhooks

Real-time notifications for claims, transfers, and custom blockchain events.

🔐

API Key Auth

Secure API key authentication with rate limiting and usage tracking.

📱

CORS Enabled

Call the API from any frontend application with full CORS support.

🔑 Get Your API Key

Connect your wallet to generate a free API key and start building

Your API Key:

⚠️ Save this key! It won't be shown again.