Metaplanet Inc.
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/metaplanet-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/metaplanet-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1759276800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://contents.xj-storage.jp/xcontents/33500/42049202/db98/40c8/83c4/1af0a508d7a6/140120251001566267.pdf",
"holding_balance": 30823.0,
"holding_net_change": 5268.0,
"transaction_value_usd": 623283456.0,
"average_entry_value_usd": 118315.01,
"transaction_value_calculated": false
},
{
"date": 1767052800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://contents.xj-storage.jp/xcontents/33500/4a51c54b/ec98/4363/bc59/64c440d858e3/140120251229527957.pdf",
"holding_balance": 35102.0,
"holding_net_change": 4279.0,
"transaction_value_usd": 447865086.57,
"average_entry_value_usd": 104665.83,
"transaction_value_calculated": false
},
{
"date": 1775088000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://metaplanet.jp/disclosure/en/20260402T160721Z-_4_2_2026__-_Notice_of_Additional_Purchase_of_Bitcoin___2_.pdf",
"holding_balance": 40177.0,
"holding_net_change": 5075.0,
"transaction_value_usd": 339631129.25,
"average_entry_value_usd": 15.49,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/metaplanet-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
40177.0
],
[
1780876800000,
40177.0
],
[
1780963200000,
40177.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/metaplanet-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
2541742058.97
],
[
1780876800000,
2533870179.36
],
[
1780963200000,
2478498639.73
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/metaplanet-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 1.4,
"date": "2026-06-04",
"high": 1.645,
"open": 1.4,
"close": 1.53,
"volume": 1641800
},
{
"low": 1.385,
"date": "2026-06-05",
"high": 1.51,
"open": 1.4,
"close": 1.4,
"volume": 1701400
},
{
"low": 1.45,
"date": "2026-06-08",
"high": 1.54,
"open": 1.54,
"close": 1.48,
"volume": 347790
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/metaplanet-inc/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/metaplanet-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -33.93,
"six_month_return": -41.27,
"three_month_return": -30.84
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/metaplanet-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 138.2,
"total_btc_percentage": 0.191,
"share_price_change_state": "down"
}