Block, Inc
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/block-inc/METRIC_NAME?api_token=YOUR_TOKEN"
api_token (required) — 24 character token.
:metric_name — one of the company metric names listed below.
200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.
Metrics
Each company metric is fetched independently.
Bitcoin Acquisitions
Bitcoin acquisition history for the company.
https://newhedge.io/api/v2/companies/block-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1759190400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://d18rn0p25nwr6d.cloudfront.net/CIK-0001512673/58ec2fec-b451-41f7-9f69-bc4e9354c93c.pdf",
"holding_balance": 8780.0,
"holding_net_change": 88.0,
"transaction_value_usd": 10175000.0,
"average_entry_value_usd": 115625.0,
"transaction_value_calculated": false
},
{
"date": 1767139200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.sec.gov/Archives/edgar/data/1512673/000162828026012254/xyz-20251231.htm",
"holding_balance": 8883.0,
"holding_net_change": 103.0,
"transaction_value_usd": 10814000.0,
"average_entry_value_usd": 104990.29,
"transaction_value_calculated": false
},
{
"date": 1777334400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://block.xyz/proof-of-reserves",
"holding_balance": 8997.89,
"holding_net_change": 114.89,
"transaction_value_usd": 8770812.8944,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/block-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
8997.89
],
[
1780876800000,
8997.89
],
[
1780963200000,
8997.89
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/block-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
569239003.7829
],
[
1780876800000,
567476047.1952
],
[
1780963200000,
555075245.1760999
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/block-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 70.55,
"date": "2026-06-04",
"high": 72.535,
"open": 70.81,
"close": 70.89,
"volume": 4571970
},
{
"low": 67.63,
"date": "2026-06-05",
"high": 70.3185,
"open": 70.18,
"close": 68.15,
"volume": 4888141
},
{
"low": 67.9,
"date": "2026-06-08",
"high": 70.61,
"open": 68.295,
"close": 69.92,
"volume": 5778093
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/block-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0.814,
"quarterly_earnings_growth": -0.939,
"eps_estimate_current_quarter": 0.676
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/block-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -0.31,
"six_month_return": 12.43,
"three_month_return": 6.68
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/block-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 1.4,
"total_btc_percentage": 0.043,
"share_price_change_state": "up"
}