Keel Infrastructure
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/keel-infrastructure/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/keel-infrastructure/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1759190400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://investor.bitfarms.com/static-files/315072ca-892c-40a0-b0b4-3c4524efdf49",
"holding_balance": 1658.0,
"holding_net_change": 256.0,
"transaction_value_usd": 29216399.36,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1762905600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://ir.keelinfra.com/news-releases/news-release-details/bitfarms-reports-third-quarter-2025-results",
"holding_balance": 1827.0,
"holding_net_change": 169.0,
"transaction_value_usd": 17179378.97,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1778457600000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://ir.keelinfra.com/news-releases/news-release-details/keel-infrastructure-reports-first-quarter-2026-results",
"holding_balance": 1558.0,
"holding_net_change": -269.0,
"transaction_value_usd": 21981356.52,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/keel-infrastructure/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
1558.0
],
[
1780876800000,
1558.0
],
[
1780963200000,
1558.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/keel-infrastructure/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
98564704.38
],
[
1780876800000,
98259445.44
],
[
1780963200000,
96112225.42
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/keel-infrastructure/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 5.66,
"date": "2026-06-04",
"high": 6.18,
"open": 5.83,
"close": 5.93,
"volume": 51879300
},
{
"low": 4.81,
"date": "2026-06-05",
"high": 5.44,
"open": 5.3,
"close": 5.13,
"volume": 113008200
},
{
"low": 5.25,
"date": "2026-06-08",
"high": 5.8,
"open": 5.38,
"close": 5.66,
"volume": 71754065
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/keel-infrastructure/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": -0.0467,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": -0.035
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/keel-infrastructure/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 41.15,
"six_month_return": 82.58,
"three_month_return": 168.25
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/keel-infrastructure/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 3.1,
"total_btc_percentage": 0.007,
"share_price_change_state": "down"
}