Introduction

Linkforge is a cryptocurrency data platform and out API provides developers with
reliable access to both market and on-chain insights. The API is designed for builders
who need accurate, real-time, and historical crypto information to power their
applications, trading systems, research tools, and analytics dashboards.

With Linkforge, you can easily fetch core metrics such as prices, market activity, liquidity
trends, and network indicators. The credit-based model allows you to pay only for the
data you use, offering flexibility for everything from small projects to enterprise
integrations.

Our goal is to make crypto data accessible, transparent, and simple to integrate.
Whether you are creating a trading bot, monitoring blockchain activity, or developing
financial dashboards, Linkforge provides a single gateway to the essential information
you need.

Getting Started

Getting started with Linkforge API takes just a few steps. This section will guide you
from creating an account to making your first successful API call.

1. Register an Account

Create your account on linkforge.app.
During registration, you provide:

  • Username
  •  Email
  •  Country
  •  Password

After completing registration, you will automatically receive two keys:

  • public_key – used to publicly identify your application (safe to use in client-side
    code)
  •  api_key – private authentication key used to authorize all requests (keep this
    secret)

Both keys are available in your dashboard.

2. Purchase Credits with Bitcoin

The Linkforge API uses a credit-based system.

  • Credits are the only way to access data through the API.
  •  You can purchase credits exclusively with BTC.
  •  Once your payment is confirmed on the blockchain, credits are instantly added to
    your account balance.

3. Make Your First API Call

With your keys and credits ready, you can now make your first API request.
All API endpoints are hosted on the API subdomain:
https://api.linkforge.app/api/public/v1/bitcoin

Example: Get Bitcoin Price

				
					curl -H "x-api-key:
06768b4668df3f1e85b9a77094184c1356e87f6a58a0267d5a16f71c18a25060" \

"https://api.linkforge.app/api/public/v1/bitcoin/price?public_key=9080c7c4b3d8bc060904
68d95bab16205a45ad342c”
				
			

4. Key Rules

Always send your api_key in the request header (x-api-key).

  •  You can include your public_key in the query string or in the header (x-publickey).
  • Never expose your api_key in client-side code or URLs.

Authentication & Keys

Every request to Linkforge API requires authentication using your API credentials.
When you register on linkforge.app, two keys are automatically generated for you:

  • public_key
    • Public identifier for your application
    • Safe to share in client-side integrations
    • Can be sent either as a query parameter (public_key) or in a header (xpublic-key)
  • api_key
    •  Private secret used to authorize your requests
    • Must always be kept secure and never exposed in client-side code or
      URLs
    • Must be sent in the request header as x-api-key

Sending Credentials

Option 1: Public Key in Query String (Recommended for most cases)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/price?public_key=YOUR_PUBLIC_KEY"
				
			

Option 2: Both Keys in Headers

				
					curl -H "x-api-key: YOUR_API_KEY" \
 -H "x-public-key: YOUR_PUBLIC_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/price"
				
			

Credits Purchase

Access to the Linkforge API is based on a credit system. Each API call consumes
credits from your balance. In order to continue using the API, you need to purchase
additional credits.

Payment Method

Credits can be purchased exclusively with Bitcoin (BTC).
At the moment, no other cryptocurrencies or fiat payment options are supported.

Payment Method

In your Linkforge dashboard, create a new credit purchase order.
You will receive a BTC address and the exact amount to send.
Once you send the payment, the transaction will be monitored on the Bitcoin
blockchain.
Payments are verified once every 24 hours.
After verification, credits are added to your account balance.

Credits Usage

Every request to the Linkforge API consumes credits from your balance. This ensures a
simple and predictable pay-as-you-go model without monthly subscriptions.

How Credits Are Consumed

  • Each API request deducts 0.01 EUR from your balance (default rate, unless
    otherwise specified).
  • The deduction happens immediately after a successful request.
  • If your balance is insufficient, the request will be rejected with an error.

Example Deduction Flow

1. User balance before request: 10.00 EUR credits
2. API call to /bitcoin/price → consumes 0.01 EUR credits
3. New balance after request: 9.99 EUR credits

What Happens When Balance Reaches Zero?

Requests with insufficient credits will return:

				
					
{
 "error": "Insufficient credit"
}
				
			

HTTP status: 402 Payment Required
To continue using the API, you must purchase additional credits.

API Endpoints Overview

This section provides a complete list of available API endpoints. Each endpoint includes
a description of its purpose, the request format, supported query parameters, and
example usage. Responses are consistently structured to return clean JSON objects,
making them easy to integrate into any application.

BTC Current Price

Get the latest Bitcoin price in all supported fiat and crypto currencies.

Endpoint

GET /api/public/v1/bitcoin/price

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/price?public_key=YOUR_PUBLIC_KEY"
				
			

BTC OHLC

Retrieve Bitcoin OHLC (candlestick) data for a selected time range.

Endpoint

GET /api/public/v1/bitcoin/ohlc

Query Parameters

Parameter Type Default Description
vs_currency string usd Currency to return data in (e.g., usd, eur, gbp)
days string 30 Data range. Supported values: 1, 7, 14, 30, 90, 180, 365, max

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/ohlc?public_key=YOUR_PUBLIC_KEY&vs
_currency=usd&days=30"

				
			

BTC Market Chart

Retrieve historical Bitcoin market data including price, market capitalization, and trading volume.

Endpoint

GET /api/public/v1/bitcoin/market-chart

Query Parameters

Parameter Type Default Description
vs_currency string usd Currency for returned values (e.g., usd, eur, gbp)
days string 30 Data range. Supported values: 1, 7, 14, 30, 90, 180, 365, max

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/marketchart?public_key=YOUR_PUBLIC_KEY&vs_currency=usd&days=30" 
				
			

BTC Coin Data

Retrieve key information and market statistics about Bitcoin.

Endpoint

GET /api/public/v1/bitcoin/data

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/data?public_key=YOUR_PUBLIC_KEY"
				
			

BTC Tickers

Retrieve a list of Bitcoin tickers across supported exchanges, including price, volume, and market information.

Endpoint

GET /api/public/v1/bitcoin/tickers

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/tickers?public_key=YOUR_PUBLIC_KEY"

				
			

BTC Treasuries

Retrieve information about Bitcoin holdings by public companies and governments.

Endpoint

GET /api/public/v1/bitcoin/treasuries

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/treasuries?public_key=YOUR_PUBLIC_K
EY"

				
			

BTC Pending Transactions

Retrieve a summary of pending Bitcoin transactions from the mempool.

Endpoint

GET /api/public/v1/bitcoin/pending

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/pending?public_key=YOUR_PUBLIC_KE
Y"
				
			

BTC Fee Estimates

Retrieve recommended Bitcoin transaction fees based on current mempool conditions.

Endpoint

GET /api/public/v1/bitcoin/fees

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/fees?public_key=YOUR_PUBLIC_KEY"
				
			

BTC Fee Histogram

Retrieve the current Bitcoin mempool fee histogram, showing the distribution of fees across pending transactions.

Endpoint

GET /api/public/v1/bitcoin/fee_histogram

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/fee_histogram?public_key=YOUR_PUBLI
C_KEY"

				
			

BTC Unconfirmed Transactions

Retrieve a list of the most recent unconfirmed Bitcoin transactions from the mempool.

Endpoint

GET /api/public/v1/bitcoin/unconfirmed

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/unconfirmed?public_key=YOUR_PUBLIC_
KEY"

				
			

BTC Transaction by TXID

Retrieve detailed information about a specific Bitcoin transaction by its TXID.

Endpoint

GET /api/public/v1/bitcoin/tx/:txid

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/tx/your_txid_here?public_key=YOUR_PU
BLIC_KEY" 
				
			

BTC Active Addresses

Retrieve the number of active Bitcoin addresses for a given time window.

Endpoint

GET /api/public/v1/bitcoin/active-addresses

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/activeaddresses?public_key=YOUR_PUBLIC_KEY&window=day" 
				
			

BTC Active Receiving Addresses

Retrieve the number of active Bitcoin receiving addresses for a given time window.

Endpoint

GET /api/public/v1/bitcoin/active-receiving-addresses

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/active-receivingaddresses?public_key=YOUR_PUBLIC_KEY&window=day" 
				
			

BTC Active Sending Addresses

Retrieve the number of active Bitcoin sending addresses for a given time window.

Endpoint

GET /api/public/v1/bitcoin/active-sending-addresses

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/active-sendingaddresses?public_key=YOUR_PUBLIC_KEY&window=day"
				
			

BTC Adjusted SOPR (aSOPR)

Retrieve the adjusted Spent Output Profit Ratio (aSOPR) for Bitcoin, a metric showing the profitability of spent coins over time.

Endpoint

GET /api/public/v1/bitcoin/adjusted-sopr

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/adjustedsopr?public_key=YOUR_PUBLIC_KEY&window=day"

				
			

BTC Average Cap

Retrieve the Bitcoin Average Cap, a capitalization metric averaged over time.

Endpoint

GET /api/public/v1/bitcoin/average-cap

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/averagecap?public_key=YOUR_PUBLIC_KEY&window=day"
				
			

BTC Average Dormancy

Retrieve the Bitcoin Average Dormancy, a metric showing the average holding period of
spent coins.

Endpoint

GET /api/public/v1/bitcoin/average-dormancy 

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/averagedormancy?public_key=YOUR_PUBLIC_KEY&window=day"
				
			

BTC Average Supply-Adjusted CDD

Retrieve the Bitcoin Average Supply-Adjusted Coin Days Destroyed (CDD), a metric showing activity weighted by the age of coins.

Endpoint

GET /api/public/v1/bitcoin/average-sa-cdd

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/average-sacdd?public_key=YOUR_PUBLIC_KEY&window=day"

				
			

BTC Binary CDD

Retrieve the Bitcoin Binary Coin Days Destroyed (CDD), a metric indicating whether long-term dormant coins are being spent.

Endpoint

GET /api/public/v1/bitcoin/binary-cdd

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/binarycdd?public_key=YOUR_PUBLIC_KEY&window=day"
				
			

BTC Block Interval (Mean)

Retrieve the mean interval between mined Bitcoin blocks for a given time window.

Endpoint

GET /api/public/v1/bitcoin/block-interval

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/blockinterval?public_key=YOUR_PUBLIC_KEY&window=day"
				
			

BTC Block Rewards

Retrieve the total Bitcoin block rewards for a given time window. Retrieve the mean interval between mined Bitcoin blocks for a given time window.

Endpoint

GET /api/public/v1/bitcoin/block-rewards

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/blockrewards?public_key=YOUR_PUBLIC_KEY&window=day"
				
			

BTC Block Rewards (USD)

Retrieve the total Bitcoin block rewards denominated in USD for a given time window.

Endpoint

GET /api/public/v1/bitcoin/block-rewards-usd

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/block-rewardsusd?public_key=YOUR_PUBLIC_KEY&window=day"
				
			

BTC Block Size (Mean)

Retrieve the mean size of Bitcoin blocks for a given time window.

Endpoint

GET /api/public/v1/bitcoin/block-size

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/blocksize?public_key=YOUR_PUBLIC_KEY&window=day"
				
			

BTC Blocks Mined

Retrieve the number of Bitcoin blocks mined for a given time window.

Endpoint

GET /api/public/v1/bitcoin/blocks-mined

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/blocksmined?public_key=YOUR_PUBLIC_KEY&window=day"

				
			

BTC Coin Days Destroyed (CDD)

Retrieve the Bitcoin Coin Days Destroyed (CDD), a metric reflecting the economic
activity of spent coins weighted by their holding period.

Endpoint

GET /api/public/v1/bitcoin/cdd

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/cdd?public_key=YOUR_PUBLIC_KEY&wi
ndow=day"
				
			

BTC Coinbase Premium Gap

Retrieve the Coinbase Premium Gap, a market indicator showing the price difference of
Bitcoin between Coinbase and other major exchanges.

Endpoint

GET /api/public/v1/bitcoin/coinbase-premium-gap

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/coinbase-premiumgap?public_key=YOUR_PUBLIC_KEY&window=day" 
				
			

BTC Coinbase Premium Index

Retrieve the Coinbase Premium Gap, a market indicator showing the price difference of
Bitcoin between Coinbase and other major exchanges.

Endpoint

GET /api/public/v1/bitcoin/coinbase-premium-index

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/coinbase-premiumindex?public_key=YOUR_PUBLIC_KEY&window=day" 
				
			

BTC Delta Cap

Retrieve the Bitcoin Delta Cap, a valuation metric derived from the difference between
realized cap and average cap.

Endpoint

GET /api/public/v1/bitcoin/delta-cap

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/deltacap?public_key=YOUR_PUBLIC_KEY&window=day"

				
			

BTC Difficulty

Retrieve the Bitcoin mining difficulty for a given time window.

Endpoint

GET /api/public/v1/bitcoin/difficulty

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/difficulty?public_key=YOUR_PUBLIC_KE
Y&window=day" 
				
			

BTC Estimated Leverage Ratio

Retrieve the Estimated Leverage Ratio (ELR), a market indicator showing the ratio of
open interest to exchange reserve balances.

Endpoint

GET /api/public/v1/bitcoin/estimated-leverage-ratio

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/estimated-leverageratio?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange" 
				
			

BTC Exchange Depositing Addresses

Retrieve the number of unique Bitcoin addresses depositing funds to exchanges for a
given time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-depositing-addresses

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-depositingaddresses?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange"
				
			

BTC Exchange Depositing Transactions

Retrieve the number of Bitcoin transactions depositing funds to exchanges for a given
time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-depositing-transactions

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-depositingtransactions?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange" 
				
			

BTC Exchange In-House Flow (Mean)

Retrieve the mean value of Bitcoin in-house flows within exchanges for a given time
window.

Endpoint

GET /api/public/v1/bitcoin/exchange-inhouse-flow-mean

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-inhouse-flowmean?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange" 
				
			

BTC Exchange In-House Flow (Total)

Retrieve the total value of Bitcoin in-house flows within exchanges for a given time
window.

Endpoint

GET /api/public/v1/bitcoin/exchange-inhouse-flow-total

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-inhouse-flowtotal?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange"
				
			

BTC Exchange In-House Transactions

Retrieve the number of Bitcoin in-house transactions within exchanges for a given time
window

Endpoint

GET /api/public/v1/bitcoin/exchange-inhouse-transactions

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-inhousetransactions?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange" 
				
			

BTC Exchange Inflow (Mean)

Retrieve the mean value of Bitcoin inflows to exchanges for a given time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-inflow-mean

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-inflowmean?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange" 
				
			

BTC Exchange Inflow (Mean, MA7)

Retrieve the 7-day moving average of mean Bitcoin inflows to exchanges for a given
time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-inflow-mean-ma7

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-inflow-meanma7?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange" 
				
			

BTC Exchange Inflow (Top 10)

Retrieve the inflows of the top 10 Bitcoin transactions to exchanges for a given time
window.

Endpoint

GET /api/public/v1/bitcoin/exchange-inflow-top10

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-inflowtop10?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange" 
				
			

BTC Exchange Inflow (Total)

Retrieve the total value of Bitcoin inflows to exchanges for a given time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-inflow-total

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-inflowtotal?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange"
				
			

BTC Exchange Inflow – Spent Output Age Bands

Retrieve the age distribution of Bitcoin spent outputs flowing into exchanges,
segmented into specific holding periods

Endpoint

GET /api/public/v1/bitcoin/exchange-inflow-age-bands

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-inflow-agebands?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange"
				
			

BTC Exchange Inflow – Spent Output Age Bands (%)

Retrieve the percentage distribution of spent output ages for Bitcoin inflows to
exchanges.

Endpoint

GET /api/public/v1/bitcoin/exchange-inflow-age-bands-percent

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-inflow-age-bandspercent?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange"
				
			

BTC Exchange Inflow – Spent Output Value Bands

Retrieve the distribution of Bitcoin inflows to exchanges by transaction value bands.

Endpoint

GET /api/public/v1/bitcoin/exchange-inflow-value-bands

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-inflow-valuebands?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange" 
				
			

BTC Exchange Inflow – Spent Output Value Bands (%)

Retrieve the percentage distribution of Bitcoin inflows to exchanges by transaction value
bands.

Endpoint

GET /api/public/v1/bitcoin/exchange-inflow-value-bands-percent

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-inflow-value-bandspercent?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange"
				
			

BTC Exchange Inflow CDD

Retrieve the Coin Days Destroyed (CDD) for Bitcoin inflows to exchanges.

Endpoint

GET /api/public/v1/bitcoin/exchange-inflow-cdd

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-inflowcdd?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange" 
				
			

BTC Exchange Netflow (Total)

Retrieve the total net Bitcoin flow to exchanges (inflows minus outflows).

Endpoint

GET /api/public/v1/bitcoin/exchange-netflow-total

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-netflowtotal?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange" 
				
			

BTC Exchange Outflow (Mean)

Retrieve the mean value of Bitcoin outflows from exchanges for a given time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-outflow-mean

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-outflowmean?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange"
				
			

BTC Exchange Outflow (Mean, MA7)

Retrieve the 7-day moving average of mean Bitcoin outflows from exchanges for a
given time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-outflow-mean-ma7

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-outflow-meanma7?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange" 
				
			

BTC Exchange Outflow (Top 10)

Retrieve the top 10 largest Bitcoin outflows from exchanges for a given time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-outflow-top10

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-outflow-meanma7?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange" 
				
			

BTC Exchange Outflow (Total)

Retrieve the total value of Bitcoin outflows from exchanges for a given time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-outflow-total

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-outflowtotal?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange"
				
			

BTC Exchange Reserve

Retrieve the amount of Bitcoin held in exchange reserves for a given time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-reserve

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchangereserve?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange" 
				
			

BTC Exchange Reserve (USD)

Retrieve the USD value of Bitcoin held in exchange reserves for a given time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-reserve-usd

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-reserveusd?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange" 
				
			

BTC Exchange Shutdown Index

Retrieve the Exchange Shutdown Index, indicating whether an exchange is considered
inactive or shut down.

Endpoint

GET /api/public/v1/bitcoin/exchange-shutdown-index

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-shutdownindex?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange"
				
			

BTC Exchange Stablecoins Ratio

Retrieve the ratio of stablecoins to Bitcoin on exchanges.

Endpoint

GET /api/public/v1/bitcoin/exchange-stablecoins-ratio

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-stablecoinsratio?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange"

				
			

BTC Exchange Stablecoins Ratio (USD)

Retrieve the ratio of stablecoins to USD value on exchanges.

Endpoint

GET /api/public/v1/bitcoin/exchange-stablecoins-ratio-usd

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-stablecoins-ratiousd?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange"
				
			

BTC Exchange Stablecoins Ratio (Combined BTC + USD)

Retrieve the combined ratio of stablecoins against both Bitcoin and USD on exchanges.

Endpoint

GET /api/public/v1/bitcoin/exchange-stablecoins-ratio/combined

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-stablecoinsratio/combined?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchan
ge"
				
			

BTC Exchange Whale Ratio

Retrieve the Exchange Whale Ratio, a metric showing the proportion of Bitcoin held by
large addresses on exchanges.

Endpoint

GET /api/public/v1/bitcoin/exchange-whale-ratio

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-whaleratio?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange"

				
			

BTC Exchange Withdrawing Addresses

Retrieve the number of unique Bitcoin addresses withdrawing funds from exchanges for
a given time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-withdrawing-addresses

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-withdrawingaddresses?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange"
				
			

BTC Exchange Withdrawing Transactions

Retrieve the number of Bitcoin transactions withdrawing funds from exchanges for a
given time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-withdrawing-transactions

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
exchangestringall_exchangeTarget exchange. Use all_exchange for aggregated data or specify a supported exchange name.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-withdrawingtransactions?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange"

				
			

BTC Exchange to Exchange Flow (Mean)

Retrieve the mean Bitcoin flow between exchanges for a given time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-to-exchange-flow-mean

Query Parameters

 

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
from_exchangestringall_exchangeSource exchange. Use all_exchange for aggregated data or specify a supported exchange.
to_exchangestringspot_exchangeDestination exchange. Defaults to spot_exchange.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-to-exchange-flowmean?public_key=YOUR_PUBLIC_KEY&window=day&from_exchange=all_exchange&
to_exchange=spot_exchange"
				
			

BTC Exchange to Exchange Flow (Total)

Retrieve the total Bitcoin flow between exchanges for a given time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-to-exchange-flow-total

Query Parameters

 

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
from_exchangestringall_exchangeSource exchange. Use all_exchange for aggregated data or specify a supported exchange.
to_exchangestringspot_exchangeDestination exchange. Defaults to spot_exchange.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-to-exchange-flowtotal?public_key=YOUR_PUBLIC_KEY&window=day&from_exchange=all_exchange&t
o_exchange=spot_exchange"
				
			

BTC Exchange to Exchange Transactions

Retrieve the number of Bitcoin transactions between exchanges for a given time
window.

Endpoint

GET /api/public/v1/bitcoin/exchange-to-exchange-transactions

Query Parameters

 

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
from_exchangestringall_exchangeSource exchange. Use all_exchange for aggregated data or specify a supported exchange.
to_exchangestringspot_exchangeDestination exchange. Defaults to spot_exchange.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-to-exchangetransactions?public_key=YOUR_PUBLIC_KEY&window=day&from_exchange=all_exch
ange&to_exchange=spot_exchange"

				
			

BTC Exchange to Miner Flow (Mean)

Retrieve the mean Bitcoin flow from exchanges to miners for a given time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-to-miner-flow-mean

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
from_exchangestringall_exchangeSource exchange. Use all_exchange for aggregated data or specify a supported exchange.
to_minerstringall_minerTarget miner. Use all_miner for aggregated data or specify a supported miner.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
“https://api.linkforge.app/api/public/v1/bitcoin/exchange-to-miner-flowmean?public_key=YOUR_PUBLIC_KEY&window=day&from_exchange=all_exchange&
to_miner=all_miner”

				
			

BTC Exchange to Miner Flow (Total)

Retrieve the total Bitcoin flow from exchanges to miners for a given time window.

Endpoint

GET /api/public/v1/bitcoin/exchange-to-miner-flow-total

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
from_exchangestringall_exchangeSource exchange. Use all_exchange for aggregated data or specify a supported exchange.
to_minerstringall_minerTarget miner. Use all_miner for aggregated data or specify a supported miner.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-to-miner-flowtotal?public_key=YOUR_PUBLIC_KEY&window=day&from_exchange=all_exchange&t
o_miner=all_miner"

				
			

BTC Exchange to Miner Transactions

Retrieve the number of Bitcoin transactions from exchanges to miners for a given time
window.

Endpoint

GET /api/public/v1/bitcoin/exchange-to-miner-transactions

Query Parameters

ParameterTypeDefaultDescription
windowstringdayTime resolution. Supported values: day, hour, block
from_exchangestringall_exchangeSource exchange. Use all_exchange for aggregated data or specify a supported exchange.
to_minerstringall_minerTarget miner. Use all_miner for aggregated data or specify a supported miner.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/exchange-to-miner
transactions?public_key=YOUR_PUBLIC_KEY&window=day&from_exchange=all_exch
 ange&to_miner=all_miner"
				
			

BTC Fees (Total)

Retrieve the total Bitcoin transaction fees for a given time window.

Endpoint

GET /api/public/v1/bitcoin/fees-total

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/fees
total?public_key=YOUR_PUBLIC_KEY&window=day" 
				
			

BTC Fees (Total, USD)

Retrieve the total Bitcoin transaction fees denominated in USD for a given time window.

Endpoint

GET /api/public/v1/bitcoin/fees-total-usd

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
“https://api.linkforge.app/api/public/v1/bitcoin/fees-total
usd?public_key=YOUR_PUBLIC_KEY&window=day” 
				
			

BTC Fees per Block (Mean)

Retrieve the mean transaction fees per Bitcoin block for a given time window.

Endpoint

GET /api/public/v1/bitcoin/fees-per-block-mean

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/fees-per-block
mean?public_key=YOUR_PUBLIC_KEY&window=day" 
				
			

BTC Fees per Block (Mean, USD)

Retrieve the mean transaction fees per Bitcoin block denominated in USD.

Endpoint

GET /api/public/v1/bitcoin/fees-per-block-mean-usd

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/fees-per-block-mean
usd?public_key=YOUR_PUBLIC_KEY&window=day" 
				
			

BTC Fees per Transaction (Mean)

Retrieve the mean transaction fees per Bitcoin transaction for a given time window.

Endpoint

GET /api/public/v1/bitcoin/fees-per-transaction-mean

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/fees-per-transaction
mean?public_key=YOUR_PUBLIC_KEY&window=day"
				
			

BTC Fees per Transaction (Median)

Retrieve the median transaction fees per Bitcoin transaction for a given time window.

Endpoint

GET /api/public/v1/bitcoin/fees-per-transaction-median

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/fees-per-transaction
median?public_key=YOUR_PUBLIC_KEY&window=day" 
				
			

BTC Fees per Transaction (Mean, USD)

Retrieve the mean transaction fees per Bitcoin transaction denominated in USD.

Endpoint

GET /api/public/v1/bitcoin/fees-per-transaction-mean-usd

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
“https://api.linkforge.app/api/public/v1/bitcoin/fees-per-transaction-mean
usd?public_key=YOUR_PUBLIC_KEY&window=day” 
				
			

BTC Fees per Transaction (Mean, USD)

Retrieve the mean transaction fees per Bitcoin transaction denominated in USD.

Endpoint

GET /api/public/v1/bitcoin/fees-per-transaction-mean-usd

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
“https://api.linkforge.app/api/public/v1/bitcoin/fees-per-transaction-mean
usd?public_key=YOUR_PUBLIC_KEY&window=day” 
				
			

BTC Fees per Transaction (Median, USD)

Retrieve the median transaction fees per Bitcoin transaction denominated in USD.

Endpoint

GET /api/public/v1/bitcoin/fees-per-transaction-median-usd

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/fees-per-transaction-median
usd?public_key=YOUR_PUBLIC_KEY&window=day"
				
			

BTC Fees to Reward Ratio

Retrieve the ratio of transaction fees to total miner rewards (fees vs block subsidy).

Endpoint

GET /api/public/v1/bitcoin/fees-to-reward-ratio

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/fees-to-reward
ratio?public_key=YOUR_PUBLIC_KEY&window=day" 
				
			

BTC Fund Flow Ratio

Retrieve the ratio of Bitcoin fund flows into exchanges relative to on-chain transaction
volume.

Endpoint

GET /api/public/v1/bitcoin/fund-flow-ratio

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, block
exchange string all_exchange Target exchange. Use all_exchange for aggregated data or specify a supported exchange.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/fund-flow
ratio?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange"
				
			

BTC Fund Holdings

Retrieve the total Bitcoin holdings of digital asset funds.

Endpoint

GET /api/public/v1/bitcoin/fund-holdings

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, block
Symbol string all_symbol Target fund. Use all_symbol for aggregated data or specify a supported fund symbol.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/fund
holdings?public_key=YOUR_PUBLIC_KEY&window=day&symbol=all_symbol" 
				
			

BTC Fund Market Premium

Retrieve the market premium of Bitcoin funds compared to their net asset value (NAV).

Endpoint

GET /api/public/v1/bitcoin/fund-market-premium

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, block
Symbol string all_symbol Target fund. Use all_symbol for aggregated data or specify a supported fund symbol.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
“https://api.linkforge.app/api/public/v1/bitcoin/fund-market
premium?public_key=YOUR_PUBLIC_KEY&window=day&symbol=all_symbol” 
				
			

BTC Fund Price (USD)

Retrieve the adjusted closing price in USD for a specified Bitcoin fund.

Endpoint

GET /api/public/v1/bitcoin/fund-price-usd

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day
Symbol string gbtc Fund symbol. Default is gbtc (Grayscale Bitcoin Trust).

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/fund-price
usd?public_key=YOUR_PUBLIC_KEY&window=day&symbol=gbtc" 
				
			

BTC Fund Volume

Retrieve the daily trading volume of Bitcoin funds.

Endpoint

GET /api/public/v1/bitcoin/fund-volume

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day
symbol string all_symbol Target fund. Use all_symbol for aggregated data or specify a fund symbol.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/fund
volume?public_key=YOUR_PUBLIC_KEY&window=day&symbol=all_symbol" 
				
			

BTC Funding Rates

Retrieve the periodic funding rates for perpetual futures markets across exchanges.

Endpoint

GET /api/public/v1/bitcoin/funding-rates

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, min
exchange string all_exchange Target exchange. Use all_exchange for aggregated data or specify an exchange.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/funding
rates?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange" 
				
			

BTC Hashrate

Retrieve the estimated Bitcoin network hashrate.

Endpoint

GET /api/public/v1/bitcoin/hashrate

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/hashrate?public_key=YOUR_PUBLIC_KE
 Y&window=day" 
				
			

BTC Long Liquidations

Retrieve the notional value of long liquidations in futures markets.

Endpoint

GET /api/public/v1/bitcoin/long-liquidations

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, min
exchange string all_exchange Target exchange. Use all_exchange for aggregated data or specify an exchange.
symbol string all_symbol Contract symbol. Use all_symbol for aggregated data or specify a symbol.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/long
liquidations?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange&
 symbol=all_symbol" 
				
			

BTC Long Liquidations USD

Retrieve the notional value of long liquidations in USD across futures markets.

Endpoint

GET /api/public/v1/bitcoin/long-liquidations-usd

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, hour, min
exchange string all_exchange Target exchange. Use all_exchange for aggregated data or specify an exchange.
symbol string all_symbol Contract symbol. Use all_symbol for aggregated data or specify a symbol.

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/long-liquidations
usd?public_key=YOUR_PUBLIC_KEY&window=day&exchange=all_exchange&symbol
 =all_symbol"
				
			

BTC Long-Term Holder SOPR

Retrieve the Spent Output Profit Ratio (SOPR) for long-term Bitcoin holders.

Endpoint

GET /api/public/v1/bitcoin/long-term-holder-sopr

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/long-term-holder
sopr?public_key=YOUR_PUBLIC_KEY&window=day"
				
			

BTC MVRV Ratio

Retrieve the Market Value to Realized Value (MVRV) ratio for Bitcoin, a measure of
market over/undervaluation.

Endpoint

GET /api/public/v1/bitcoin/mvrv-ratio

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/mvrv
ratio?public_key=YOUR_PUBLIC_KEY&window=day" 
				
			

BTC Market Cap

Retrieve the total Bitcoin market capitalization over time.

Endpoint

GET /api/public/v1/bitcoin/market-cap

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/market
cap?public_key=YOUR_PUBLIC_KEY&window=day" 
				
			

BTC Mean Coin Age (MCA)

Retrieve the average coin age (MCA), a metric that reflects the average holding period
of all circulating Bitcoin.

Endpoint

GET /api/public/v1/bitcoin/mean-coin-age

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
“https://api.linkforge.app/api/public/v1/bitcoin/mean-coin
age?public_key=YOUR_PUBLIC_KEY&window=day”
				
			

BTC Mean Coin Dollar Age (MCDA)

Retrieve the Mean Coin Dollar Age (MCDA), a metric combining coin age with the USD
value of coins, reflecting the weighted age of Bitcoin holdings.

Endpoint

GET /api/public/v1/bitcoin/mean-coin-dollar-age

Query Parameters

Parameter Type Default Description
window string day Time resolution. Supported values: day, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/mean-coin-dollar
age?public_key=YOUR_PUBLIC_KEY&window=day"
				
			

BTC Miner Depositing Addresses

Retrieve the number of unique Bitcoin miner addresses depositing coins to other
entities.

Endpoint

GET /api/public/v1/bitcoin/miner-depositing-addresses

Query Parameters

Parameter Type Default Description
miner string all_miner Target miner. Use all_miner for aggregated data or specify a miner.
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/miner-depositing
addresses?public_key=YOUR_PUBLIC_KEY&window=day&miner=all_miner"
				
			

BTC Miner Depositing Transactions

Retrieve the number of transactions where Bitcoin miners deposit coins into other
entities.

Endpoint

GET /api/public/v1/bitcoin/miner-depositing-transactions

Query Parameters

Parameter Type Default Description
miner string all_miner Target miner. Use all_miner for aggregated data or specify a miner.
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/miner-depositing
transactions?public_key=YOUR_PUBLIC_KEY&window=day&miner=all_miner" 
				
			

BTC Miner In-House Flow (Mean)

Retrieve the average value of in-house Bitcoin transfers among miners.

Endpoint

GET /api/public/v1/bitcoin/miner-in-house-flow-mean

Query Parameters

Parameter Type Default Description
miner string all_miner Target miner. Use all_miner for aggregated data or specify a miner.
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/miner-in-house-flow
mean?public_key=YOUR_PUBLIC_KEY&window=day&miner=all_miner" 
				
			

BTC Miner In-House Flow (Total)

Retrieve the total value of in-house Bitcoin transfers among miners.

Endpoint

GET /api/public/v1/bitcoin/miner-in-house-flow-total

Query Parameters

Parameter Type Default Description
miner string all_miner Target miner. Use all_miner for aggregated data or specify a miner.
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/miner-in-house-flow
total?public_key=YOUR_PUBLIC_KEY&window=day&miner=all_miner"
				
			

BTC Miner In-House Transactions

Retrieve the number of internal Bitcoin transfer transactions between miner addresses.

Endpoint

GET /api/public/v1/bitcoin/miner-in-house-transactions

Query Parameters

Parameter Type Default Description
miner string all_miner Target miner. Use all_miner for aggregated data or specify a miner.
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/miner-in-house
transactions?public_key=YOUR_PUBLIC_KEY&window=day&miner=all_miner" 
				
			

BTC Miner Inflow (Mean)

Retrieve the mean value of Bitcoin inflows to miners.

Endpoint

GET /api/public/v1/bitcoin/miner-inflow-mean

Query Parameters

Parameter Type Default Description
miner string all_miner Target miner. Use all_miner for aggregated data or specify a miner.
window string day Time resolution. Supported values: day, hour, block

Example Request (cURL)

				
					curl -H "x-api-key: YOUR_API_KEY" \ 
"https://api.linkforge.app/api/public/v1/bitcoin/miner-inflow
mean?public_key=YOUR_PUBLIC_KEY&window=day&miner=all_miner"