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.
[
[
1788912000000,
754.0
],
[
1788998400000,
754.0
],
[
1789084800000,
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.
[
[
1788912000000,
59152634.580000006
],
[
1788998400000,
59029174.62
],
[
1789084800000,
57768976.71999999
]
]
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": 1612.0,
"date": "2026-09-08",
"high": 1636.0,
"open": 1616.0,
"close": 1624.0,
"volume": 63849
},
{
"low": 1574.0,
"date": "2026-09-09",
"high": 1626.0,
"open": 1612.0,
"close": 1614.0,
"volume": 106371
},
{
"low": 1576.0,
"date": "2026-09-10",
"high": 1628.0,
"open": 1610.0,
"close": 1586.0,
"volume": 95872
}
]
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": 12.64,
"six_month_return": 48.22,
"three_month_return": 36.96
}
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.0,
"total_btc_percentage": 0.004,
"share_price_change_state": "up"
}