-
Couldn't load subscription status.
- Fork 1.9k
Open
Description
π 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
Labels
No labels