Kindly MD, 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/kindly-md-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/kindly-md-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "date": 1767139200000,
    "type": "sell",
    "coin_id": "bitcoin",
    "source_url": "https://feeds.issuerdirect.com/news-release.html?newsid=6802077673637011&symbol=KDLY,NAKA",
    "holding_balance": 5342.0,
    "holding_net_change": -56.0,
    "transaction_value_usd": 4899511.68,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "date": 1774915200000,
    "type": "sell",
    "coin_id": "bitcoin",
    "source_url": "https://app.quotemedia.com/data/downloadFiling?webmasterId=102691&type=HTML&cdn=7145fa86dee140abf26e7474a968a65d&formType=10-K&formDescription=Annual+report+pursuant+to+Section+13+or+15(d)&dateFiled=2026-03-30&cik=0001946573",
    "holding_balance": 5058.0,
    "holding_net_change": -284.0,
    "transaction_value_usd": 19359317.24,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "date": 1781136000000,
    "type": "sell",
    "coin_id": "bitcoin",
    "source_url": "https://nakamoto.com/updates/nakamoto-strengthens-capital-structure-through-debt-reduction-refinancing-and-share-repurchase-authorization",
    "holding_balance": 4467.0,
    "holding_net_change": -591.0,
    "transaction_value_usd": 37539132.09,
    "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/kindly-md-inc/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1788912000000,
    4467.0
  ],
  [
    1788998400000,
    4467.0
  ],
  [
    1789084800000,
    4467.0
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/kindly-md-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1788912000000,
    350444056.59
  ],
  [
    1788998400000,
    349712630.01
  ],
  [
    1789084800000,
    342246709.55999994
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/kindly-md-inc/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 7.85,
    "date": "2026-09-08",
    "high": 8.29,
    "open": 8.1,
    "close": 7.95,
    "volume": 187241
  },
  {
    "low": 7.77,
    "date": "2026-09-09",
    "high": 8.23,
    "open": 8.085,
    "close": 7.98,
    "volume": 178750
  },
  {
    "low": 7.56,
    "date": "2026-09-10",
    "high": 8.0662,
    "open": 7.77,
    "close": 7.76,
    "volume": 168546
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/kindly-md-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.415,
  "quarterly_earnings_growth": 0,
  "eps_estimate_current_quarter": -0.605
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/kindly-md-inc/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": 55.2,
  "six_month_return": -29.96,
  "three_month_return": 90.2
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/kindly-md-inc/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 246.5,
  "total_btc_percentage": 0.021,
  "share_price_change_state": "down"
}