MercadoLibre Inc.
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/mercadolibre-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/mercadolibre-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1620172800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://s3.amazonaws.com/sec.irpass.cc/2831/0001099590-24-000017.htm",
"holding_balance": 412.7,
"holding_net_change": 412.7,
"transaction_value_usd": 6000000.0,
"average_entry_value_usd": 14538.41,
"transaction_value_calculated": false
},
{
"date": 1743379200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.sec.gov/Archives/edgar/data/1099590/000109959025000028/meli-20250331.htm",
"holding_balance": 570.4,
"holding_net_change": 157.7,
"transaction_value_usd": 16000000.0,
"average_entry_value_usd": 101458.47,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/mercadolibre-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
570.4
],
[
1780876800000,
570.4
],
[
1780963200000,
570.4
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/mercadolibre-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
36085563.144
],
[
1780876800000,
35973804.672
],
[
1780963200000,
35187685.096
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/mercadolibre-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 20360.0,
"date": "2026-06-04",
"high": 21290.0,
"open": 20900.0,
"close": 20450.0,
"volume": 406988
},
{
"low": 20200.0,
"date": "2026-06-05",
"high": 20850.0,
"open": 20710.0,
"close": 20230.0,
"volume": 275793
},
{
"low": 20010.0,
"date": "2026-06-08",
"high": 20650.0,
"open": 20260.0,
"close": 20500.0,
"volume": 402107
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/mercadolibre-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0,
"quarterly_earnings_growth": -0.156,
"eps_estimate_current_quarter": 0
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/mercadolibre-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 1.28,
"six_month_return": -21.15,
"three_month_return": -6.61
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/mercadolibre-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 0.0,
"total_btc_percentage": 0.003,
"share_price_change_state": "up"
}