GameStop Corp.
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/gamestop-corp/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/gamestop-corp/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1748390400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://investor.gamestop.com/news-releases/news-details/2025/GameStop-Announces-Purchase-of-Bitcoin/default.aspx",
"holding_balance": 4710.0,
"holding_net_change": 4710.0,
"transaction_value_usd": 507840960.6,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1774310400000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://www.businesswire.com/news/home/20260324496659/en/GameStop-Reports-Fourth-Quarter-and-Fiscal-Year-2025-Results",
"holding_balance": 1.0,
"holding_net_change": -4709.0,
"transaction_value_usd": 368000000.0,
"average_entry_value_usd": -78148.23,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/gamestop-corp/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
1.0
],
[
1788998400000,
1.0
],
[
1789084800000,
1.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/gamestop-corp/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
78451.77
],
[
1788998400000,
78288.03
],
[
1789084800000,
76616.68
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/gamestop-corp/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 18.72,
"date": "2026-09-08",
"high": 19.5,
"open": 19.35,
"close": 18.89,
"volume": 10418061
},
{
"low": 18.972,
"date": "2026-09-09",
"high": 20.24,
"open": 19.1,
"close": 19.89,
"volume": 15594761
},
{
"low": 19.6001,
"date": "2026-09-10",
"high": 20.52,
"open": 19.88,
"close": 20.39,
"volume": 10483562
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/gamestop-corp/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0,
"quarterly_earnings_growth": 6.333,
"eps_estimate_current_quarter": 0.27
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/gamestop-corp/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 8.34,
"six_month_return": -16.64,
"three_month_return": -9.05
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/gamestop-corp/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 0.0,
"total_btc_percentage": 0.0,
"share_price_change_state": "down"
}