Taiwan Mask Corp

Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.

How to call

Request format

GET
curl -X GET "https://newhedge.io/api/v2/companies/taiwan-mask-corp/METRIC_NAME?api_token=YOUR_TOKEN"
Query params

api_token (required) — 24 character token.

Path params

:metric_name — one of the company metric names listed below.

Responses

200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.

Metrics

Each company metric is fetched independently.

7 metrics
Metric

Bitcoin Acquisitions

Bitcoin acquisition history for the company.

Endpoint
https://newhedge.io/api/v2/companies/taiwan-mask-corp/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "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
  }
]
Metric

Bitcoin Holdings

Historical Bitcoin holdings for the company.

Endpoint
https://newhedge.io/api/v2/companies/taiwan-mask-corp/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1788912000000,
    5.07
  ],
  [
    1788998400000,
    5.07
  ],
  [
    1789084800000,
    5.07
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/taiwan-mask-corp/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1788912000000,
    397750.4739
  ],
  [
    1788998400000,
    396920.3121
  ],
  [
    1789084800000,
    388446.5676
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/taiwan-mask-corp/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 41.5,
    "date": "2026-09-09",
    "high": 41.5,
    "open": 41.5,
    "close": 41.5,
    "volume": 4406951
  },
  {
    "low": 43.55,
    "date": "2026-09-10",
    "high": 45.65,
    "open": 44.65,
    "close": 45.65,
    "volume": 12773159
  },
  {
    "low": 44.0,
    "date": "2026-09-11",
    "high": 49.4,
    "open": 44.75,
    "close": 47.75,
    "volume": 67234896
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/taiwan-mask-corp/company-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "eps_estimate_next_quarter": 0,
  "quarterly_earnings_growth": 2.169,
  "eps_estimate_current_quarter": 0
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/taiwan-mask-corp/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": 17.32,
  "six_month_return": -4.5,
  "three_month_return": -11.41
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/taiwan-mask-corp/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 0.0,
  "total_btc_percentage": 0.0,
  "share_price_change_state": "down"
}