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.
[
[
1784764800000,
1558.0
],
[
1784851200000,
1558.0
],
[
1784937600000,
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.
[
[
1784764800000,
101379200.22
],
[
1784851200000,
99875029.12
],
[
1784937600000,
100224535.26
]
]
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": 4.51,
"date": "2026-07-22",
"high": 4.905,
"open": 4.51,
"close": 4.69,
"volume": 26567000
},
{
"low": 4.705,
"date": "2026-07-23",
"high": 5.05,
"open": 4.72,
"close": 4.81,
"volume": 30645600
},
{
"low": 4.25,
"date": "2026-07-24",
"high": 4.82,
"open": 4.81,
"close": 4.26,
"volume": 27917318
}
]
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": -30.39,
"six_month_return": 60.15,
"three_month_return": 31.48
}
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.5,
"total_btc_percentage": 0.007,
"share_price_change_state": "down"
}