ATAI Life Sciences BV

Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.

How to call

Request format

GET
curl -X GET "https://newhedge.io/api/v2/companies/atai-life-sciences-bv/METRIC_NAME?api_token=YOUR_TOKEN"
Query params

api_token (required) — 24 character token.

Path params

:metric_name — one of the company metric names listed below.

Responses

200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.

Metrics

Each company metric is fetched independently.

7 metrics
Metric

Bitcoin Acquisitions

Bitcoin acquisition history for the company.

Endpoint
https://newhedge.io/api/v2/companies/atai-life-sciences-bv/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "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
  }
]
Metric

Bitcoin Holdings

Historical Bitcoin holdings for the company.

Endpoint
https://newhedge.io/api/v2/companies/atai-life-sciences-bv/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1782864000000,
    58.0
  ],
  [
    1782950400000,
    58.0
  ],
  [
    1783036800000,
    58.0
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
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.

Sample response
200 Successful response
[
  [
    1782864000000,
    3477943.9
  ],
  [
    1782950400000,
    3566294.14
  ],
  [
    1783036800000,
    3626507.42
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/atai-life-sciences-bv/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 5.24,
    "date": "2026-06-30",
    "high": 5.52,
    "open": 5.325,
    "close": 5.27,
    "volume": 8291400
  },
  {
    "low": 4.8,
    "date": "2026-07-01",
    "high": 5.26,
    "open": 5.205,
    "close": 4.88,
    "volume": 8214600
  },
  {
    "low": 4.77,
    "date": "2026-07-02",
    "high": 5.27,
    "open": 4.88,
    "close": 5.19,
    "volume": 11327800
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/atai-life-sciences-bv/company-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "eps_estimate_next_quarter": -0.1032,
  "quarterly_earnings_growth": -0.968,
  "eps_estimate_current_quarter": -0.1119
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/atai-life-sciences-bv/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": 7.9,
  "six_month_return": 30.4,
  "three_month_return": 40.27
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/atai-life-sciences-bv/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 0.2,
  "total_btc_percentage": 0.0,
  "share_price_change_state": "down"
}