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.
[
[
1782864000000,
11509.0
],
[
1782950400000,
11509.0
],
[
1783036800000,
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.
[
[
1782864000000,
690132005.95
],
[
1782950400000,
707663435.47
],
[
1783036800000,
719611618.91
]
]
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": 406.0,
"date": "2026-06-30",
"high": 424.54,
"open": 406.0,
"close": 420.6,
"volume": 43385600
},
{
"low": 418.09,
"date": "2026-07-01",
"high": 432.86,
"open": 421.46,
"close": 425.3,
"volume": 40127900
},
{
"low": 389.3,
"date": "2026-07-02",
"high": 432.35,
"open": 428.01,
"close": 393.45,
"volume": 73915800
}
]
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": -7.15,
"six_month_return": -13.42,
"three_month_return": 3.2
}
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"
}