OneMedNet Corp.
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/onemednet-corp/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/onemednet-corp/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1751241600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://app.quotemedia.com/data/downloadFiling?webmasterId=90423&ref=319373781&type=PDF&symbol=ONMD&companyName=OneMedNet+Corp&formType=10-Q&formDescription=General+form+for+quarterly+reports+under+Section+13+or+15%28d%29&dateFiled=2025-08-13",
"holding_balance": 15.0,
"holding_net_change": 5.0,
"transaction_value_usd": 536016.35,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1759190400000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://app.quotemedia.com/data/downloadFiling?webmasterId=90423&ref=319584955&type=PDF&symbol=ONMD&companyName=OneMedNet+Corp&formType=10-Q&formDescription=General+form+for+quarterly+reports+under+Section+13+or+15%28d%29&dateFiled=2025-11-14",
"holding_balance": 5.0,
"holding_net_change": -10.0,
"transaction_value_usd": 1141265.6,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1767139200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.sec.gov/ix?doc=/Archives/edgar/data/0001849380/000149315226013681/form10-k.htm",
"holding_balance": 6.0,
"holding_net_change": 1.0,
"transaction_value_usd": 87491.28,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/onemednet-corp/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
6.0
],
[
1780876800000,
6.0
],
[
1780963200000,
6.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/onemednet-corp/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
379581.66
],
[
1780876800000,
378406.08
],
[
1780963200000,
370136.94
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/onemednet-corp/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 0.72,
"date": "2026-06-04",
"high": 0.77,
"open": 0.766,
"close": 0.73,
"volume": 163300
},
{
"low": 0.671,
"date": "2026-06-05",
"high": 0.75,
"open": 0.75,
"close": 0.677,
"volume": 275700
},
{
"low": 0.6801,
"date": "2026-06-08",
"high": 0.7195,
"open": 0.709,
"close": 0.6904,
"volume": 76967
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/onemednet-corp/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": 0
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/onemednet-corp/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -29.41,
"six_month_return": -62.48,
"three_month_return": -0.2
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/onemednet-corp/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 1.0,
"total_btc_percentage": 0.0,
"share_price_change_state": "down"
}