ZOOZ Power Ltd
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/zooz-power-ltd/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/zooz-power-ltd/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1759708800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.globenewswire.com/news-release/2025/10/06/3161758/0/en/ZOOZ-Purchases-329-Bitcoin-valued-at-40-Million-Bringing-Total-Holding-to-854-Bitcoin-Valued-at-More-than-100m.html",
"holding_balance": 854.0,
"holding_net_change": 329.0,
"transaction_value_usd": 40000000.0,
"average_entry_value_usd": 121580.55,
"transaction_value_calculated": false
},
{
"date": 1760572800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.globenewswire.com/news-release/2025/10/16/3167917/0/en/ZOOZ-Purchases-88-More-Bitcoin-Growing-Its-Total-Bitcoin-Treasury-to-942-Bitcoin.html",
"holding_balance": 942.0,
"holding_net_change": 88.89,
"transaction_value_usd": 9999900.0,
"average_entry_value_usd": 112500.0,
"transaction_value_calculated": false
},
{
"date": 1761609600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.globenewswire.com/news-release/2025/10/28/3175536/0/en/ZOOZ-Expands-Its-Bitcoin-Treasury-to-1-036-Bitcoin-Following-Additional-Purchase.html",
"holding_balance": 1036.0,
"holding_net_change": 94.0,
"transaction_value_usd": 10528000.0,
"average_entry_value_usd": 112000.0,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/zooz-power-ltd/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
1036.0
],
[
1780876800000,
1036.0
],
[
1780963200000,
1036.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/zooz-power-ltd/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
65541099.96
],
[
1780876800000,
65338116.48
],
[
1780963200000,
63910311.64
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/zooz-power-ltd/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 5.64,
"date": "2026-06-04",
"high": 5.99,
"open": 5.71,
"close": 5.77,
"volume": 25100
},
{
"low": 5.11,
"date": "2026-06-05",
"high": 5.785,
"open": 5.785,
"close": 5.39,
"volume": 17000
},
{
"low": 5.2,
"date": "2026-06-08",
"high": 5.8,
"open": 5.39,
"close": 5.425,
"volume": 55147
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/zooz-power-ltd/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": 0
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/zooz-power-ltd/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -7.42,
"six_month_return": -48.33,
"three_month_return": -28.43
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/zooz-power-ltd/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 146.4,
"total_btc_percentage": 0.005,
"share_price_change_state": "up"
}