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.
[
[
1778976000000,
1.0
],
[
1779062400000,
1.0
],
[
1779148800000,
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.
[
[
1778976000000,
77429.86
],
[
1779062400000,
76944.27
],
[
1779148800000,
76760.01
]
]
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": 21.46,
"date": "2026-05-15",
"high": 22.01,
"open": 21.54,
"close": 21.59,
"volume": 5346600
},
{
"low": 21.42,
"date": "2026-05-18",
"high": 22.09,
"open": 21.62,
"close": 21.91,
"volume": 5260600
},
{
"low": 21.6,
"date": "2026-05-19",
"high": 22.19,
"open": 21.88,
"close": 22.1,
"volume": 4375293
}
]
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": -0.253,
"eps_estimate_current_quarter": 0.37
}
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": -11.32,
"six_month_return": 6.97,
"three_month_return": -7.42
}
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"
}