Thanks to visit codestin.com
Credit goes to github.com

Skip to content

A Blockchain ToolΒ #305

@victoryenyichukwu

Description

@victoryenyichukwu

πŸ’Ž ChainTrack API Documentation

Overview

The ChainTrack API allows developers to access real-time blockchain data.
You can use it to:

  • Track wallet transactions
  • Check token balances
  • Get block details
  • Monitor network status

This makes it useful for blockchain explorers, crypto dashboards, and Web3 projects that need transparent transaction data.

βš™οΈ Base URL

Example header:

🧠 Endpoints

1️⃣ GET /wallets/{address}/transactions

Description:
Fetch all transactions for a specific wallet address.

Example Request

curl -X GET "https://api.chaintrack.io/v1/wallets/0xA56F23.../transactions" \
-H "Authorization: Bearer <your_api_key>"
{
  "wallet": "0xA56F23...",
  "transactions": [
    {
      "hash": "0xabc123...",
      "from": "0xA56F23...",
      "to": "0xB12C45...",
      "amount": "0.05 ETH",
      "timestamp": "2025-10-19T12:30:00Z"
    },
    {
      "hash": "0xdef456...",
      "from": "0xC98E11...",
      "to": "0xA56F23...",
      "amount": "10 USDT",
      "timestamp": "2025-10-18T10:15:00Z"
    }
  ]
}

curl -X GET "https://api.chaintrack.io/v1/tokens/0xA56F23.../balance" \
-H "Authorization: Bearer <your_api_key>"
{
  "wallet": "0xA56F23...",
  "token": "USDT",
  "balance": "250.45"
}

  "{
  "block_number": 18392045,
  "hash": "0xa94e8b...",
  "miner": "0xMinerNode45...",
  "timestamp": "2025-10-19T13:20:05Z",
  "transactions_count": 156
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions