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.
[
[
1786924800000,
1036.0
],
[
1787011200000,
1036.0
],
[
1787097600000,
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.
[
[
1786924800000,
65087673.84
],
[
1787011200000,
66816882.16
],
[
1787097600000,
67021274.6
]
]
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.351,
"date": "2026-08-14",
"high": 5.45,
"open": 5.45,
"close": 5.351,
"volume": 1000
},
{
"low": 5.345,
"date": "2026-08-17",
"high": 5.45,
"open": 5.45,
"close": 5.35,
"volume": 1700
},
{
"low": 5.26,
"date": "2026-08-18",
"high": 5.4,
"open": 5.4,
"close": 5.26,
"volume": 2449
}
]
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": 5.84,
"six_month_return": -30.42,
"three_month_return": -10.54
}
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": 154.6,
"total_btc_percentage": 0.005,
"share_price_change_state": "up"
}