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.
[
[
1780790400000,
754.0
],
[
1780876800000,
754.0
],
[
1780963200000,
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.
[
[
1780790400000,
47700761.94
],
[
1780876800000,
47553030.72
],
[
1780963200000,
46513875.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": 1240.0,
"date": "2026-06-04",
"high": 1270.0,
"open": 1268.0,
"close": 1244.0,
"volume": 27699
},
{
"low": 1240.0,
"date": "2026-06-05",
"high": 1290.0,
"open": 1242.0,
"close": 1276.0,
"volume": 95184
},
{
"low": 1242.0,
"date": "2026-06-08",
"high": 1288.0,
"open": 1274.0,
"close": 1242.0,
"volume": 57911
}
]
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": 14.79,
"six_month_return": 58.82,
"three_month_return": 30.87
}
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"
}