Alliance Resource Partners LP
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/alliance-resource-partners-lp/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/alliance-resource-partners-lp/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1740614400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://d18rn0p25nwr6d.cloudfront.net/CIK-0001086600/76b411a2-2daf-434c-9d40-b34463846514.pdf",
"holding_balance": 481.89,
"holding_net_change": 481.89,
"transaction_value_usd": 18748000.0,
"average_entry_value_usd": 38905.14,
"transaction_value_calculated": false
},
{
"date": 1746748800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://d18rn0p25nwr6d.cloudfront.net/CIK-0001086600/4e4a0a24-e8e0-441f-937a-100357b2ea3f.pdf",
"holding_balance": 512.55,
"holding_net_change": 30.66,
"transaction_value_usd": 2897000.0,
"average_entry_value_usd": 94487.93,
"transaction_value_calculated": false
},
{
"date": 1754524800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://d18rn0p25nwr6d.cloudfront.net/CIK-0001086600/9b723984-6d13-4952-9f9a-5be83f8c1170.pdf",
"holding_balance": 541.39,
"holding_net_change": 28.84,
"transaction_value_usd": 2851000.0,
"average_entry_value_usd": 98855.76,
"transaction_value_calculated": false
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/alliance-resource-partners-lp/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
541.39
],
[
1788998400000,
541.39
],
[
1789084800000,
541.39
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/alliance-resource-partners-lp/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
42473003.7603
],
[
1788998400000,
42384356.5617
],
[
1789084800000,
41479504.385199994
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/alliance-resource-partners-lp/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 26.63,
"date": "2026-09-08",
"high": 26.9104,
"open": 26.89,
"close": 26.66,
"volume": 342754
},
{
"low": 26.5,
"date": "2026-09-09",
"high": 26.94,
"open": 26.94,
"close": 26.77,
"volume": 231419
},
{
"low": 26.67,
"date": "2026-09-10",
"high": 26.94,
"open": 26.94,
"close": 26.87,
"volume": 221371
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/alliance-resource-partners-lp/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0.7733,
"quarterly_earnings_growth": 0.341,
"eps_estimate_current_quarter": 0.6533
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/alliance-resource-partners-lp/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 8.65,
"six_month_return": -2.29,
"three_month_return": 6.42
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/alliance-resource-partners-lp/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 1.2,
"total_btc_percentage": 0.003,
"share_price_change_state": "up"
}