K33 AB

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/k33-ab/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/k33-ab/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "date": 1752451200000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://k33.com/ir/article?slug=k33-completes-strategic-purchase-of-36-bitcoin",
    "holding_balance": 121.0,
    "holding_net_change": 36.0,
    "transaction_value_usd": 4463205.0,
    "average_entry_value_usd": 123977.92,
    "transaction_value_calculated": false
  },
  {
    "date": 1753747200000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://x.com/K33HQ/status/1950149346021843041?t=K2JGjzEcHef6eYYWIUcX8g&s=19",
    "holding_balance": 126.0,
    "holding_net_change": 5.0,
    "transaction_value_usd": 602000.0,
    "average_entry_value_usd": 120400.0,
    "transaction_value_calculated": false
  },
  {
    "date": 1758499200000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://k33.com/ir/article?slug=k33-completes-strategic-purchase-of-15-bitcoin",
    "holding_balance": 141.0,
    "holding_net_change": 15.0,
    "transaction_value_usd": 1682470.4,
    "average_entry_value_usd": 112164.69,
    "transaction_value_calculated": false
  }
]
Metric

Bitcoin Holdings

Historical Bitcoin holdings for the company.

Endpoint
https://newhedge.io/api/v2/companies/k33-ab/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

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

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/k33-ab/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1782864000000,
    8455001.55
  ],
  [
    1782950400000,
    8669784.03
  ],
  [
    1783036800000,
    8816164.59
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/k33-ab/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 0.0309,
    "date": "2026-07-01",
    "high": 0.034,
    "open": 0.0332,
    "close": 0.032,
    "volume": 58811127
  },
  {
    "low": 0.0291,
    "date": "2026-07-02",
    "high": 0.032,
    "open": 0.032,
    "close": 0.0297,
    "volume": 91446228
  },
  {
    "low": 0.0277,
    "date": "2026-07-03",
    "high": 0.03,
    "open": 0.0298,
    "close": 0.0279,
    "volume": 58724847
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/k33-ab/company-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "eps_estimate_next_quarter": 0,
  "quarterly_earnings_growth": 0,
  "eps_estimate_current_quarter": 0
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/k33-ab/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": 29.77,
  "six_month_return": 4.49,
  "three_month_return": 39.5
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/k33-ab/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 2.1,
  "total_btc_percentage": 0.001,
  "share_price_change_state": "down"
}