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.
[
[
1780790400000,
5.07
],
[
1780876800000,
5.07
],
[
1780963200000,
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.
[
[
1780790400000,
320746.5027
],
[
1780876800000,
319753.1376
],
[
1780963200000,
312765.7143
]
]
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": 50.0,
"date": "2026-06-05",
"high": 53.4,
"open": 52.5,
"close": 51.4,
"volume": 4787795
},
{
"low": 46.3,
"date": "2026-06-08",
"high": 46.8,
"open": 46.3,
"close": 46.3,
"volume": 6529365
},
{
"low": 45.25,
"date": "2026-06-09",
"high": 47.65,
"open": 46.75,
"close": 47.5,
"volume": 5573320
}
]
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": -5.0,
"six_month_return": 36.1,
"three_month_return": -0.11
}
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"
}