ChainCheckAPI Introduction

A REST API for validating cryptocurrency addresses across 100+ blockchain networks.

Base URL: https://api.chaincheckapi.com

Quick Start

# Validate an Ethereum address (no authentication required)
curl -X POST https://api.chaincheckapi.com/v1/validate \
  -H "Content-Type: application/json" \
  -d '{"chain": "ETH", "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"}'

Response:

{
  "chain": "ETH",
  "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
  "valid": true,
  "usage_left": "Limited by IP (30/hr)"
}

Rate Limits

TierRequests/HourAuthentication
Free30None (IP-based)
Premium1,000API Key required

To upgrade to Premium, buy the membership on Patreon.