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.
[
[
1786924800000,
11509.0
],
[
1787011200000,
11509.0
],
[
1787097600000,
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.
[
[
1786924800000,
723063743.46
],
[
1787011200000,
742273645.54
],
[
1787097600000,
744544256.15
]
]
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": 335.33,
"date": "2026-08-14",
"high": 351.26,
"open": 342.33,
"close": 342.27,
"volume": 45437100
},
{
"low": 337.48,
"date": "2026-08-17",
"high": 345.45,
"open": 340.69,
"close": 339.3,
"volume": 26037100
},
{
"low": 331.12,
"date": "2026-08-18",
"high": 340.53,
"open": 333.22,
"close": 336.87,
"volume": 27113653
}
]
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.5505,
"quarterly_earnings_growth": -0.03,
"eps_estimate_current_quarter": 0.5367
}
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": -8.85,
"six_month_return": -17.96,
"three_month_return": -17.83
}
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.1,
"total_btc_percentage": 0.055,
"share_price_change_state": "up"
}