Loading ForensicBlock
Preparing your blockchain forensics platform...
Preparing your blockchain forensics platform...
Everything you need to know about using ForensicBlock tools and API
Quick start guide to using ForensicBlock tools
5 min readComplete API documentation with examples
PremiumDetailed guides for each forensic tool
12 guidesUnderstanding blockchain data and sources
TechnicalForensic investigation best practices
EssentialReal-world investigation examples
6 studiesAll API requests require authentication using an API key. Include your API key in the request header:
Authorization: Bearer YOUR_API_KEYValidate cryptocurrency addresses programmatically
POST https://api.forensicblock.com/v1/validate
Content-Type: application/json
{
"address": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
"blockchain": "bitcoin"
}Response:
{
"valid": true,
"blockchain": "bitcoin",
"type": "P2PKH",
"network": "mainnet"
}Trace blockchain transactions and analyze fund flows
POST https://api.forensicblock.com/v1/trace
Content-Type: application/json
{
"txHash": "0x123...",
"blockchain": "ethereum",
"depth": 3
}Response:
{
"transaction": {
"hash": "0x123...",
"from": "0xabc...",
"to": "0xdef...",
"value": "1.5 ETH",
"timestamp": "2024-01-15T10:30:00Z"
},
"riskScore": 45,
"flags": ["high_value", "new_address"]
}Free Tier
100
requests/day
Pro Tier
10,000
requests/day
Enterprise
Unlimited
custom limits