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.
[
[
1782864000000,
1036.0
],
[
1782950400000,
1036.0
],
[
1783036800000,
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.
[
[
1782864000000,
62123273.8
],
[
1782950400000,
63701391.88
],
[
1783036800000,
64776925.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.5,
"date": "2026-06-30",
"high": 5.555,
"open": 5.52,
"close": 5.54,
"volume": 4500
},
{
"low": 5.3,
"date": "2026-07-01",
"high": 5.559,
"open": 5.5,
"close": 5.3,
"volume": 3100
},
{
"low": 5.34,
"date": "2026-07-02",
"high": 6.119,
"open": 5.8,
"close": 5.47,
"volume": 8800
}
]
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": -12.62,
"six_month_return": -34.1,
"three_month_return": -6.01
}
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.2,
"total_btc_percentage": 0.005,
"share_price_change_state": "up"
}