Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Finance / Blockchain Data API
Blockchain Data API logo

Blockchain Data API

★ Only Publicly Available OpenAPI DocumentFinanceBankingapiKey22 EndpointsREST

For Agents

Look up Bitcoin blocks, transactions, addresses, balances, exchange rates, and network statistics directly from the Blockchain.com data feed.

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.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Blockchain Data API to your agent

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.

1

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 | sh
2

Step 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 instance

Jentic 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.

Capabilities

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

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

Use Cases

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.

Key Endpoints

22 endpoints — jentic publishes the only available openapi specification for blockchain data api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/rawaddr/{address}

Get balance and transactions for a Bitcoin address

GET

/rawtx/{hash}

Fetch a transaction by hash

GET

/rawblock/{hash}

Fetch a block by hash

GET

/latestblock

Return the most recent block

GET

/unconfirmed-transactions

Stream pending mempool transactions

GET

/ticker

Get live BTC prices in major fiat currencies

GET

/tobtc

Convert a fiat amount to BTC at the current rate

GET

/charts/{chartName}

Return historical time-series for a named network metric

GET

/rawaddr/{address}

Get balance and transactions for a Bitcoin address

GET

/rawtx/{hash}

Fetch a transaction by hash

GET

/rawblock/{hash}

Fetch a block by hash

GET

/latestblock

Return the most recent block

GET

/unconfirmed-transactions

Stream pending mempool transactions

GET

/ticker

Get live BTC prices in major fiat currencies

GET

/tobtc

Convert a fiat amount to BTC at the current rate

GET

/charts/{chartName}

Return historical time-series for a named network metric

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

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

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

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.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Blockfrost

→

Blockfrost provides equivalent on-chain data access for Cardano rather than Bitcoin

Choose Blockfrost when the agent needs to query Cardano blocks, transactions, or stake addresses instead of the Bitcoin network

Alternative

Blockchain Data API

→

Same API — listed for self-reference

Default choice for Bitcoin blockchain queries

Complementary

Blynk

→

IoT device platform — pair with Blockchain Data API when building hardware that reacts to on-chain events

Use alongside when the agent must trigger a physical device based on a confirmed Bitcoin transaction

FAQs

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.

GET STARTED

Start building with Blockchain Data API

Explore with Jentic
View OpenAPI Document