Kindly MD, Inc.
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/kindly-md-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/kindly-md-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1762905600000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://nakamoto.com/update/kindlymd-reports-third-quarter-2025-operational-and-financial-results#",
"holding_balance": 5398.0,
"holding_net_change": -367.0,
"transaction_value_usd": 37306698.71,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1767139200000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://feeds.issuerdirect.com/news-release.html?newsid=6802077673637011&symbol=KDLY,NAKA",
"holding_balance": 5342.0,
"holding_net_change": -56.0,
"transaction_value_usd": 4899511.68,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1774915200000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://app.quotemedia.com/data/downloadFiling?webmasterId=102691&type=HTML&cdn=7145fa86dee140abf26e7474a968a65d&formType=10-K&formDescription=Annual+report+pursuant+to+Section+13+or+15(d)&dateFiled=2026-03-30&cik=0001946573",
"holding_balance": 5058.0,
"holding_net_change": -284.0,
"transaction_value_usd": 19359317.24,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/kindly-md-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
5058.0
],
[
1779062400000,
5058.0
],
[
1779148800000,
5058.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/kindly-md-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
391640231.88
],
[
1779062400000,
389184117.66
],
[
1779148800000,
388252130.58
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/kindly-md-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 0.175,
"date": "2026-05-15",
"high": 0.189,
"open": 0.184,
"close": 0.188,
"volume": 5424300
},
{
"low": 0.167,
"date": "2026-05-18",
"high": 0.187,
"open": 0.185,
"close": 0.17,
"volume": 3625500
},
{
"low": 0.1671,
"date": "2026-05-19",
"high": 0.1765,
"open": 0.175,
"close": 0.1707,
"volume": 2920250
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/kindly-md-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0.005,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": -0.005
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/kindly-md-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -29.75,
"six_month_return": -72.2,
"three_month_return": -32.53
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/kindly-md-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 328.1,
"total_btc_percentage": 0.024,
"share_price_change_state": "down"
}