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.
[
[
1778976000000,
570.4
],
[
1779062400000,
570.4
],
[
1779148800000,
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.
[
[
1778976000000,
44165992.144
],
[
1779062400000,
43889011.608
],
[
1779148800000,
43783909.704
]
]
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": 19070.0,
"date": "2026-05-15",
"high": 19790.0,
"open": 19790.0,
"close": 19180.0,
"volume": 879749
},
{
"low": 19000.0,
"date": "2026-05-18",
"high": 19640.0,
"open": 19090.0,
"close": 19540.0,
"volume": 514168
},
{
"low": 19490.0,
"date": "2026-05-19",
"high": 20140.0,
"open": 19600.0,
"close": 19860.0,
"volume": 562499
}
]
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": -12.78,
"six_month_return": -21.81,
"three_month_return": -19.85
}
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"
}