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": 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
},
{
"date": 1786665600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://contents.xj-storage.jp/xcontents/AS08938/06f7ee2e/02bc/433b/98f9/f3a57c42c8c1/140120260812518112.pdf",
"holding_balance": 1501.27086805,
"holding_net_change": 9.96,
"transaction_value_usd": 631906.7220000001,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
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.
[
[
1788912000000,
1501.27086805
],
[
1788998400000,
1501.27086805
],
[
1789084800000,
1501.27086805
]
]
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.
[
[
1788912000000,
117777356.847959
],
[
1788998400000,
117531538.7560244
],
[
1789084800000,
115022389.6907091
]
]
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"
}