ATAI Life Sciences BV
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/atai-life-sciences-bv/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/atai-life-sciences-bv/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1743379200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.sec.gov/Archives/edgar/data/1840904/000095017025071435/atai-20250331.htm",
"holding_balance": 58.0,
"holding_net_change": 58.0,
"transaction_value_usd": 5000000.0,
"average_entry_value_usd": 86206.9,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/atai-life-sciences-bv/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
58.0
],
[
1788998400000,
58.0
],
[
1789084800000,
58.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/atai-life-sciences-bv/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
4550202.66
],
[
1788998400000,
4540705.74
],
[
1789084800000,
4443767.4399999995
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/atai-life-sciences-bv/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 7.23,
"date": "2026-09-08",
"high": 7.4,
"open": 7.32,
"close": 7.28,
"volume": 119760700
},
{
"low": 7.28,
"date": "2026-09-09",
"high": 7.33,
"open": 7.32,
"close": 7.29,
"volume": 14854600
},
{
"low": 7.3,
"date": "2026-09-10",
"high": 7.37,
"open": 7.31,
"close": 7.35,
"volume": 9566600
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/atai-life-sciences-bv/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": -0.1198,
"quarterly_earnings_growth": -0.968,
"eps_estimate_current_quarter": -0.1117
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/atai-life-sciences-bv/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 1.94,
"six_month_return": 81.03,
"three_month_return": 94.44
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/atai-life-sciences-bv/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 0.2,
"total_btc_percentage": 0.0,
"share_price_change_state": "down"
}