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.
[
[
1780358400000,
1558.0
],
[
1780444800000,
1558.0
],
[
1780531200000,
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.
[
[
1780358400000,
103873869.82
],
[
1780444800000,
99933843.62
],
[
1780531200000,
99341289.47999999
]
]
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": 6.03,
"date": "2026-06-02",
"high": 6.45,
"open": 6.12,
"close": 6.14,
"volume": 47432100
},
{
"low": 5.97,
"date": "2026-06-03",
"high": 6.45,
"open": 6.08,
"close": 6.15,
"volume": 46569400
},
{
"low": 5.67,
"date": "2026-06-04",
"high": 6.1799,
"open": 5.85,
"close": 5.93,
"volume": 42590095
}
]
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": 67.99,
"six_month_return": 91.29,
"three_month_return": 167.12
}
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": 2.7,
"total_btc_percentage": 0.007,
"share_price_change_state": "down"
}