Méliuz S.A
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/meliuz-s-a/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/meliuz-s-a/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1747267200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://x.com/IsraelSalmen/status/1923134780214034680",
"holding_balance": 320.2,
"holding_net_change": 274.5,
"transaction_value_usd": 28400000.0,
"average_entry_value_usd": 103460.84,
"transaction_value_calculated": false
},
{
"date": 1750636800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": null,
"holding_balance": 595.7,
"holding_net_change": 275.4,
"transaction_value_usd": 29033240.832,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1756944000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.infomoney.com.br/mercados/meliuz-cash3-adquire-901-bitcoins-por-r-55-milhoes/",
"holding_balance": 604.69,
"holding_net_change": 9.01,
"transaction_value_usd": 1010669.72,
"average_entry_value_usd": 112172.0,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/meliuz-s-a/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
604.69
],
[
1779062400000,
604.69
],
[
1779148800000,
604.69
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/meliuz-s-a/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1778976000000,
46821062.0434
],
[
1779062400000,
46527430.62630001
],
[
1779148800000,
46416010.4469
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/meliuz-s-a/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 4.05,
"date": "2026-05-15",
"high": 4.35,
"open": 4.32,
"close": 4.12,
"volume": 1978800
},
{
"low": 3.89,
"date": "2026-05-18",
"high": 4.14,
"open": 4.14,
"close": 3.89,
"volume": 1724300
},
{
"low": 3.74,
"date": "2026-05-19",
"high": 4.0,
"open": 3.84,
"close": 3.92,
"volume": 1417100
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/meliuz-s-a/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0.1035,
"quarterly_earnings_growth": 0.19,
"eps_estimate_current_quarter": 0.1537
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/meliuz-s-a/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -5.54,
"six_month_return": -11.51,
"three_month_return": 17.72
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/meliuz-s-a/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 10.5,
"total_btc_percentage": 0.003,
"share_price_change_state": "down"
}