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.
[
[
1782864000000,
1.0
],
[
1782950400000,
1.0
],
[
1783036800000,
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.
[
[
1782864000000,
59964.55
],
[
1782950400000,
61487.83
],
[
1783036800000,
62525.99
]
]
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.7,
"date": "2026-06-30",
"high": 22.18,
"open": 21.85,
"close": 22.08,
"volume": 4358900
},
{
"low": 21.91,
"date": "2026-07-01",
"high": 22.75,
"open": 21.95,
"close": 22.64,
"volume": 4476000
},
{
"low": 22.6,
"date": "2026-07-02",
"high": 23.11,
"open": 22.75,
"close": 22.82,
"volume": 4611000
}
]
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.16
}
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": 9.08,
"six_month_return": 11.32,
"three_month_return": 0.26
}
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"
}