Blockchain Data API — Wallet, Prices & Whale Alerts avatar

Blockchain Data API — Wallet, Prices & Whale Alerts

Pricing

from $0.0002 / result

Go to Apify Store
Blockchain Data API — Wallet, Prices & Whale Alerts

Blockchain Data API — Wallet, Prices & Whale Alerts

Zero-anti-bot blockchain data API. Query wallet portfolios, live token prices, whale alerts, and cross-chain balances across Ethereum, Base, Polygon & more. No scraping, no CAPTCHAs, no ToS issues. Pay only $0.0004 per result. Start with a free 7-day Pro trial (100K calls/mo).

Pricing

from $0.0002 / result

Rating

0.0

(0)

Developer

INAPP

INAPP

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Blockchain Data API

Zero-anti-bot blockchain data API. Wallet portfolios, whale alerts, cross-chain balances, and live token prices — no scraping, no CAPTCHAs, no ToS issues.

Quick Start

# Health check
curl https://imapp--blockchain-api.apify.actor/health
# {"status":"ok","service":"blockchain-api","version":"0.2.10"}
# Token price
curl https://imapp--blockchain-api.apify.actor/v1/token-price/ETH
# {"symbol":"ETH","price_usd":2987.45,"source":"coingecko"}
# Wallet portfolio
curl -X POST https://imapp--blockchain-api.apify.actor/v1/wallet \
-H "Content-Type: application/json" \
-d '{"address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"}'
# Whale alerts
curl -X POST https://imapp--blockchain-api.apify.actor/v1/whale-alerts \
-H "Content-Type: application/json" \
-d '{"address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045", "eth_threshold": 50}'
# Cross-chain balances
curl -X POST https://imapp--blockchain-api.apify.actor/v1/cross-chain \
-H "Content-Type: application/json" \
-d '{"address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045", "chains": ["eth","polygon","avax"]}'

API Reference

All data endpoints are versioned under /v1. The /health endpoint is unversioned.

GET /health

{"status":"ok","service":"blockchain-api","version":"0.2.10"}

POST /v1/trial

Get a free 7-day Pro trial API key (25 RPS, 100K calls/mo, all endpoints).

Limited to 1 key per IP address. Returns your existing key if you already have one. Rate-limited to 1 request per 60 seconds for new key generation.

$curl -X POST https://imapp--blockchain-api.apify.actor/v1/trial
{
"api_key": "trial_a1b2c3d4e5f6g7h8",
"tier": "pro",
"expires_in_days": 7,
"usage_instructions": {
"authorization": "Bearer trial_a1b2c3d4e5f6g7h8",
"endpoints": [
"GET /v1/token-price/{symbol}",
"POST /v1/wallet",
"POST /v1/whale-alerts",
"POST /v1/cross-chain"
],
"docs": "/docs"
}
}

GET /v1/token-price/{symbol}

Live USD price. Sources: CoinGecko → Chainlink → fallback.

ParamDescription
symbolETH, MATIC, or AVAX (case-insensitive)
{"symbol":"ETH","price_usd":2987.45,"source":"coingecko"}

POST /v1/wallet

FieldTypeDefaultDescription
addressstringrequired0x-prefixed address
include_tokensbooltrueERC-20 token balances
include_nftsboolfalseNFT holdings
include_transfersboolfalseRecent transfers
transfer_limitint20Max transfers (1–100)
chainstring"eth"Chain key

POST /v1/whale-alerts

FieldTypeDefaultDescription
addressstringrequiredAddress to monitor
eth_thresholdfloat50ETH alert threshold
usd_thresholdfloat100000USD alert threshold
directionstring"both""in", "out", or "both"
lookback_blocksint1000Blocks to scan (~4 hours)

POST /v1/cross-chain

FieldTypeDefaultDescription
addressstringrequiredAddress
chainslistalleth, arb, base, polygon, opt, avax
include_tokensbooltrueInclude token counts
include_nftsboolfalseInclude NFT counts

Supported Chains

KeyChainCurrency
ethEthereumETH
arbArbitrumETH
baseBaseETH
polygonPolygonMATIC
optOptimismETH
avaxAvalanche C-ChainAVAX

Pricing

Pay per result — you only pay for what you use.

EventPriceNote
API result$0.0004Charged per API response. 10K calls = $4, 100K = $40, 500K = $200.
Actor start$0.00005One-time fee per session (first 5s waived).
Apify user tierYour price per result
Free$0.0004
Bronze$0.0003
Silver$0.00025
Gold$0.0002

Higher Apify tiers get automatic volume discounts — no coupon codes, no hidden fees.

Tier limits (enforced server-side)

TierCalls/moRPSChains
Free3,00021
Starter10,00053
Pro100,000256
Enterprise500,000506

At $0.0004/result, 10K calls cost just $4 — 60% less than GoldRush ($10/mo minimum). Pro at 100K calls ($40) undercuts QuickNode ($49/mo) and Infura ($50/mo). Enterprise at 500K calls ($200) competes with Moralis ($199/mo) on volume while offering dedicated rate limits (50 RPS) and 6 chains.

New users get a free 7-day Pro trial (25 RPS, 100K calls/mo, all endpoints) by calling POST /v1/trial. No credit card required.

Authentication

Pass your API key via x-api-key or Authorization: Bearer header:

curl https://imapp--blockchain-api.apify.actor/v1/token-price/ETH \
-H "x-api-key: sk_starter_abc123"

No key? You get the free tier automatically.

Rate Limits

Each tier has a requests-per-second cap and a monthly quota. Exceed either and you get 429 Too Many Requests with Retry-After.

Every response includes rate-limit headers:

X-RateLimit-Limit-RPS: 5
X-RateLimit-Remaining-RPS: 4
X-RateLimit-Limit-Monthly: 10000
X-RateLimit-Remaining-Monthly: 9997
X-Tier: free

When rate-limited:

{"detail":"RPS limit exceeded","retry_after_seconds":0.85}

Errors

StatusCodeMeaning
400invalid_chain / unknown_tokenBad parameter
422validationInvalid address format
429rate_limitedRPS or monthly quota exceeded
502rpc_error / price_unavailableUpstream failure

License

MIT