Remixpoint
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/remixpoint/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/remixpoint/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1776988800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://contents.xj-storage.jp/xcontents/AS08938/13e2b617/b90d/4d5f/9f7d/a4945428ef1b/140120260423509612.pdf",
"holding_balance": 1451.29361149,
"holding_net_change": 19.96,
"transaction_value_usd": 1564666.0,
"average_entry_value_usd": 78373.98,
"transaction_value_calculated": false
},
{
"date": 1777334400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://contents.xj-storage.jp/xcontents/AS08938/df8ce899/32d0/4a5e/9e7f/0d06c28969bf/140120260427512319.pdf",
"holding_balance": 1471.01824145,
"holding_net_change": 19.72,
"transaction_value_usd": 1564666.0,
"average_entry_value_usd": 79325.49,
"transaction_value_calculated": false
},
{
"date": 1777507200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://contents.xj-storage.jp/xcontents/AS08938/7ef72720/dd8d/4f79/8959/98b65280c502/140120260430514347.pdf",
"holding_balance": 1491.31334195,
"holding_net_change": 20.3,
"transaction_value_usd": 1544206.0,
"average_entry_value_usd": 76087.63,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/remixpoint/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
1491.31334195
],
[
1782950400000,
1491.31334195
],
[
1783036800000,
1491.31334195
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/remixpoint/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
89425933.45902787
],
[
1782950400000,
91697621.24655347
],
[
1783036800000,
93245843.10563228
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/remixpoint/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"message": "Data unavailable for this company"
}
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/remixpoint/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"message": "Data unavailable for this company"
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/remixpoint/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"message": "Data unavailable for this company"
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/remixpoint/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 0.0,
"total_btc_percentage": 0.007,
"share_price_change_state": "down"
}