For Agents
Look up Bitcoin blocks, transactions, addresses, balances, exchange rates, and network statistics directly from the Blockchain.com data feed.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Blockchain Data API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Blockchain Data API.
Fetch raw block, transaction, or address records by hash, height, or wallet identifier
Resolve a Bitcoin address to its current balance, total received, and total sent
Stream the unconfirmed transaction pool to monitor pending mempool activity
GET STARTED
Use for: Look up the balance of a Bitcoin address, Get the latest Bitcoin block height and hash, Find all transactions for a given Bitcoin address, Convert a USD amount to its current BTC equivalent
Not supported: Does not broadcast transactions, manage wallets, or execute trades — use for read-only Bitcoin blockchain data and exchange rate lookup only.
Jentic publishes the only available OpenAPI specification for Blockchain Data API, keeping it validated and agent-ready. The Blockchain.com Data API exposes read-only access to the Bitcoin network, returning raw block, transaction, and address records along with mempool state, mining pool stats, network difficulty, and historical chart data. It also includes a fiat exchange ticker that converts between BTC and major currencies. Authentication is optional — endpoints are publicly accessible, with a query-string api_code unlocking higher rate limits.
Convert between BTC and fiat currencies using the live exchange ticker
Query network statistics including hash rate, difficulty, and block count
Pull historical chart data for metrics like market price, transaction volume, and miner revenue
List active Bitcoin mining pools and their relative share of recent blocks
Patterns agents use Blockchain Data API for, with concrete tasks.
★ Wallet balance lookup
Resolve a Bitcoin wallet address to its current balance, total received, and total sent without running a full node. The Blockchain Data API serves this via a single GET on /rawaddr/{address} or the lightweight /q/addressbalance/{address} endpoint, which returns the value in satoshis. This is suitable for portfolio dashboards, custody reconciliation, and treasury monitoring where on-chain state must be checked at most every block.
Call GET /rawaddr/{address} for a given Bitcoin address and return the final_balance in BTC along with the most recent five transaction hashes.
Fiat-to-BTC conversion
Convert between BTC and major fiat currencies using a live exchange ticker. The /ticker endpoint returns 15m, last, buy, sell, and 24h prices for currencies including USD, EUR, GBP, and JPY, while /tobtc converts a fiat amount to its equivalent in BTC at the current rate. Use this to price products in BTC at checkout, generate invoices, or compute fiat-denominated portfolio values.
Call GET /tobtc?currency=USD&value=100 to convert 100 USD to BTC at the current exchange rate and return the BTC amount.
Mempool and transaction monitoring
Watch the unconfirmed transaction pool to detect incoming payments before they are mined into a block. The /unconfirmed-transactions endpoint streams pending transactions, and /rawtx/{hash} returns the full transaction record once a hash is known. This pattern supports zero-confirmation payment notifications, fraud detection, and on-chain analytics dashboards.
Poll GET /unconfirmed-transactions every 30 seconds and alert when a transaction with output address bc1q... appears.
Network statistics for analytics
Pull current and historical Bitcoin network metrics — hash rate, difficulty, block count, average transaction fees, and miner revenue. The /stats endpoint returns a single snapshot, while /charts/{chartName} returns time-series data for over 30 named metrics. Use this to populate research dashboards, write market commentary, or feed quantitative trading models.
Call GET /charts/hash-rate?timespan=1year and return the daily hash rate values formatted as a CSV.
AI agent on-chain research
Let an AI agent answer Bitcoin research questions by combining address, transaction, and statistic endpoints through Jentic. The agent searches Jentic for the right operation by intent (e.g. 'check a Bitcoin address balance'), loads the schema, and executes the call with the api_code held in the Jentic vault. No node operation, no manual auth handling, no docs reading.
Search Jentic for 'check a Bitcoin address balance', load the schema for the matching Blockchain.com operation, and execute it for address 1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa.
22 endpoints — jentic publishes the only available openapi specification for blockchain data api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/rawaddr/{address}
Get balance and transactions for a Bitcoin address
/rawtx/{hash}
Fetch a transaction by hash
/rawblock/{hash}
Fetch a block by hash
/latestblock
Return the most recent block
/unconfirmed-transactions
Stream pending mempool transactions
/ticker
Get live BTC prices in major fiat currencies
/tobtc
Convert a fiat amount to BTC at the current rate
/charts/{chartName}
Return historical time-series for a named network metric
/rawaddr/{address}
Get balance and transactions for a Bitcoin address
/rawtx/{hash}
Fetch a transaction by hash
/rawblock/{hash}
Fetch a block by hash
/latestblock
Return the most recent block
/unconfirmed-transactions
Stream pending mempool transactions
Three things that make agents converge on Jentic-routed access.
Credential isolation
The optional api_code is stored encrypted in the Jentic vault. Agents receive scoped execution access — the raw api_code never enters the agent context, and unauthenticated calls work without any setup.
Intent-based discovery
Agents search by intent (e.g. 'check a Bitcoin address balance') and Jentic returns the matching Blockchain.com operation with its input schema, so the agent can call the right endpoint without browsing the docs site.
Time to first call
Direct integration: 2-4 hours to handle endpoint variants, mempool polling, and fiat conversion edge cases. Through Jentic: under 15 minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Blockchain Data API through Jentic.
Why is there no official OpenAPI spec for Blockchain Data API?
Blockchain.com does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Blockchain Data API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Blockchain Data API use?
Authentication is optional. Endpoints are publicly accessible, but you can pass an api_code as a query-string parameter to unlock higher rate limits. When called through Jentic, the api_code is stored in the Jentic vault and injected at execution time, so the agent never sees the raw value.
Can I look up Bitcoin address balances with this API?
Yes. Call GET /rawaddr/{address} for a full address record including balance, total received, total sent, and transactions, or GET /q/addressbalance/{address} for just the satoshi balance. Both accept legacy, SegWit, and bech32 addresses.
What are the rate limits for the Blockchain Data API?
The unauthenticated tier is throttled at the IP level, with documented guidance of roughly 1 request per 10 seconds for the heavier raw endpoints. Requesting an api_code from Blockchain.com support raises this limit; the exact ceiling depends on the tier granted.
How do I monitor incoming Bitcoin payments through Jentic?
Search Jentic for 'monitor unconfirmed Bitcoin transactions', load the schema for the matching /unconfirmed-transactions operation, and execute it on a polling loop. The Jentic SDK call is await client.execute(ExecutionRequest(...)) and returns a list of pending transactions you can filter by output address.
Does this API support querying historical Bitcoin charts?
Yes. Call GET /charts/{chartName} with names like hash-rate, difficulty, market-price, transactions-per-second, or miners-revenue. Use the timespan parameter (e.g. 30days, 1year, all) to control the window returned.
Is the Blockchain Data API free?
Yes, basic access is free and unauthenticated. Higher rate limits require an api_code, which Blockchain.com issues on request — there is no published paid tier as of this spec.
/ticker
Get live BTC prices in major fiat currencies
/tobtc
Convert a fiat amount to BTC at the current rate
/charts/{chartName}
Return historical time-series for a named network metric