Aker ASA
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/aker-asa/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/aker-asa/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1615161600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.akerasa.com/en/news/stock-exchange-releases/article/36900-aker-asa-launches-seetee-to-invest-in-bitcoin-and-blockchain-technology",
"holding_balance": 1170.0,
"holding_net_change": 1170.0,
"transaction_value_usd": 58754406.0,
"average_entry_value_usd": 50217.44,
"transaction_value_calculated": false
},
{
"date": 1703980800000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://www.finansavisen.no/teknologi/2024/11/12/8204739/kjell-inge-rokke-og-aker-sitter-pa-bitcoins-verdt-744-millioner-kroner?zephr_sso_ott=ejKy2f",
"holding_balance": 754.0,
"holding_net_change": -416.0,
"transaction_value_usd": 18092694.0,
"average_entry_value_usd": -43492.05,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/aker-asa/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
754.0
],
[
1782950400000,
754.0
],
[
1783036800000,
754.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/aker-asa/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
45213270.7
],
[
1782950400000,
46361823.82
],
[
1783036800000,
47144596.46
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/aker-asa/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 1198.0,
"date": "2026-07-01",
"high": 1248.0,
"open": 1234.0,
"close": 1198.0,
"volume": 214658
},
{
"low": 1156.0,
"date": "2026-07-02",
"high": 1196.0,
"open": 1186.0,
"close": 1186.0,
"volume": 92100
},
{
"low": 1184.0,
"date": "2026-07-03",
"high": 1224.0,
"open": 1190.0,
"close": 1224.0,
"volume": 62145
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/aker-asa/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/aker-asa/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -1.61,
"six_month_return": 61.9,
"three_month_return": 13.97
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/aker-asa/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 0.1,
"total_btc_percentage": 0.004,
"share_price_change_state": "up"
}