Complete API reference for VelCoin (VLC) blockchain integration.
/
Network information and available endpoints.
/status
Detailed network status including block height, supply, and holders.
/api/stats
Network statistics for explorers and monitoring.
/blocks
Get all blocks. Use ?limit=10&offset=0 for pagination.
/block/<index_or_hash>
Get specific block by index number or block hash.
/tx/<hash>
Get transaction by hash (from blockchain or mempool).
/balance/<address>
Get balance and transaction history for address.
/address/<address>
Full address information with recent transactions.
/api/address/<address>/history
Complete transaction history for address.
/mempool
Get pending transactions in mempool.
/send
Submit a signed transaction.
{
"from": "sender_address",
"to": "recipient_address",
"amount": 100.0,
"nonce": 1,
"public_key": "public_key_hex",
"signature": "signature_hex"
}
/create_wallet
Generate a new wallet with private key, public key, and address.
/mine
Mine a new block with current mempool transactions.
{
"miner_address": "optional_miner_address"
}
Visit /explorer for the web-based blockchain explorer.