Tesla Inc
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/tesla-inc/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/tesla-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1617148800000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://www.coindesk.com/business/2021/04/26/elon-musks-tesla-sold-bitcoin-in-q1-for-proceeds-of-272m/",
"holding_balance": 38880.0,
"holding_net_change": -4320.0,
"transaction_value_usd": 150000000.0,
"average_entry_value_usd": -34722.22,
"transaction_value_calculated": false
},
{
"date": 1656547200000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://tesla-cdn.thron.com/static/EIUQEC_2022_Q2_Quarterly_Update_Deck_J8VLIK.pdf?xseo=&response-content-disposition=inline%3Bfilename%3D%22_022-Q2-Quarterly-Update-Deck.pdf%22",
"holding_balance": 9720.0,
"holding_net_change": -29160.0,
"transaction_value_usd": 1012500000.0,
"average_entry_value_usd": -34722.22,
"transaction_value_calculated": false
},
{
"date": 1735603200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.sec.gov/Archives/edgar/data/1318605/000162828025003063/tsla-20241231.htm",
"holding_balance": 11509.0,
"holding_net_change": 1789.0,
"transaction_value_usd": 48500000.0,
"average_entry_value_usd": 27110.12,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/tesla-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
11509.0
],
[
1780876800000,
11509.0
],
[
1780963200000,
11509.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/tesla-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
728100887.49
],
[
1780876800000,
725845929.12
],
[
1780963200000,
709984340.41
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/tesla-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 417.16,
"date": "2026-06-04",
"high": 426.35,
"open": 419.84,
"close": 418.45,
"volume": 35323300
},
{
"low": 388.59,
"date": "2026-06-05",
"high": 424.68,
"open": 420.5,
"close": 391.0,
"volume": 63128800
},
{
"low": 394.72,
"date": "2026-06-08",
"high": 412.94,
"open": 396.32,
"close": 408.95,
"volume": 50178344
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/tesla-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0.4534,
"quarterly_earnings_growth": 0.083,
"eps_estimate_current_quarter": 0.3481
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/tesla-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -0.69,
"six_month_return": -10.03,
"three_month_return": 2.58
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/tesla-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 0.0,
"total_btc_percentage": 0.055,
"share_price_change_state": "up"
}