LM Funding America Inc

Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.

How to call

Request format

GET
curl -X GET "https://newhedge.io/api/v2/companies/lm-funding-america-inc/METRIC_NAME?api_token=YOUR_TOKEN"
Query params

api_token (required) — 24 character token.

Path params

:metric_name — one of the company metric names listed below.

Responses

200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.

Metrics

Each company metric is fetched independently.

7 metrics
Metric

Bitcoin Acquisitions

Bitcoin acquisition history for the company.

Endpoint
https://newhedge.io/api/v2/companies/lm-funding-america-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "date": 1762300800000,
    "type": "sell",
    "coin_id": "bitcoin",
    "source_url": "https://www.lmfunding.com/investors/news-events/press-releases/detail/172/lm-funding-america-announces-october-2025-production-and",
    "holding_balance": 294.9,
    "holding_net_change": -9.6,
    "transaction_value_usd": 997283.1359999999,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "date": 1764806400000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://www.lmfunding.com/investors/news-events/press-releases/detail/175/lm-funding-america-announces-november-2025-production-and",
    "holding_balance": 301.8,
    "holding_net_change": 6.9,
    "transaction_value_usd": 635669.4,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "date": 1767744000000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://www.lmfunding.com/investors/news-events/press-releases/detail/178/lm-funding-america-announces-december-2025-production-and",
    "holding_balance": 356.3,
    "holding_net_change": 54.5,
    "transaction_value_usd": 4973178.955,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  }
]
Metric

Bitcoin Holdings

Historical Bitcoin holdings for the company.

Endpoint
https://newhedge.io/api/v2/companies/lm-funding-america-inc/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1782864000000,
    356.3
  ],
  [
    1782950400000,
    356.3
  ],
  [
    1783036800000,
    356.3
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/lm-funding-america-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1782864000000,
    21365369.165
  ],
  [
    1782950400000,
    21908113.829
  ],
  [
    1783036800000,
    22278010.237
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/lm-funding-america-inc/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 0.137,
    "date": "2026-06-30",
    "high": 0.149,
    "open": 0.142,
    "close": 0.149,
    "volume": 770700
  },
  {
    "low": 0.14,
    "date": "2026-07-01",
    "high": 0.15,
    "open": 0.14,
    "close": 0.15,
    "volume": 1037200
  },
  {
    "low": 0.142,
    "date": "2026-07-02",
    "high": 0.151,
    "open": 0.146,
    "close": 0.149,
    "volume": 954300
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/lm-funding-america-inc/company-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "eps_estimate_next_quarter": -0.23,
  "quarterly_earnings_growth": -0.894,
  "eps_estimate_current_quarter": -0.22
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/lm-funding-america-inc/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": -39.18,
  "six_month_return": -66.14,
  "three_month_return": -38.68
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/lm-funding-america-inc/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 859.3,
  "total_btc_percentage": 0.002,
  "share_price_change_state": "down"
}