Taiwan Mask Corp
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/taiwan-mask-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/taiwan-mask-corp/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1756339200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.quantum-s.co.jp/en/detail?id=1817",
"holding_balance": 23.07,
"holding_net_change": 23.07,
"transaction_value_usd": 2634764.0,
"average_entry_value_usd": 114207.37,
"transaction_value_calculated": false
},
{
"date": 1759449600000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://www.quantum-s.co.jp/en/detail?id=1823",
"holding_balance": 11.57,
"holding_net_change": -11.5,
"transaction_value_usd": 1356517.0,
"average_entry_value_usd": -117958.0,
"transaction_value_calculated": false
},
{
"date": 1768780800000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://www.quantum-s.co.jp/en/detail?id=1919",
"holding_balance": 5.07,
"holding_net_change": -6.5,
"transaction_value_usd": 601622.905,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/taiwan-mask-corp/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
5.07
],
[
1782950400000,
5.07
],
[
1783036800000,
5.07
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/taiwan-mask-corp/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
304020.2685
],
[
1782950400000,
311743.2981
],
[
1783036800000,
317006.7693
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/taiwan-mask-corp/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 51.4,
"date": "2026-07-01",
"high": 54.8,
"open": 51.4,
"close": 53.2,
"volume": 10680019
},
{
"low": 51.0,
"date": "2026-07-02",
"high": 52.7,
"open": 52.3,
"close": 51.4,
"volume": 3594214
},
{
"low": 50.6,
"date": "2026-07-03",
"high": 52.2,
"open": 50.9,
"close": 51.5,
"volume": 2390627
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/taiwan-mask-corp/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0,
"quarterly_earnings_growth": 2.169,
"eps_estimate_current_quarter": 0
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/taiwan-mask-corp/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -2.83,
"six_month_return": 45.69,
"three_month_return": 18.53
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/taiwan-mask-corp/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 0.0,
"total_btc_percentage": 0.0,
"share_price_change_state": "down"
}