Phunware 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/phunware-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/phunware-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "date": 1735603200000,
    "type": "sell",
    "coin_id": "bitcoin",
    "source_url": "https://investors.phunware.com/sec-filings/annual-reports/content/0000950170-25-047919/0000950170-25-047919.pdf",
    "holding_balance": 0.82,
    "holding_net_change": -2.18,
    "transaction_value_usd": 203527.089,
    "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/phunware-inc/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1780790400000,
    0.82
  ],
  [
    1780876800000,
    0.82
  ],
  [
    1780963200000,
    0.82
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1780790400000,
    51876.1602
  ],
  [
    1780876800000,
    51715.4976
  ],
  [
    1780963200000,
    50585.3818
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 1.9,
    "date": "2026-06-04",
    "high": 2.06,
    "open": 1.92,
    "close": 2.01,
    "volume": 356200
  },
  {
    "low": 1.93,
    "date": "2026-06-05",
    "high": 2.022,
    "open": 2.0,
    "close": 1.97,
    "volume": 198400
  },
  {
    "low": 1.94,
    "date": "2026-06-08",
    "high": 2.0,
    "open": 1.97,
    "close": 1.95,
    "volume": 81784
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/phunware-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.14,
  "quarterly_earnings_growth": 0,
  "eps_estimate_current_quarter": -0.17
}
Metric

Performance Metrics

Calculated performance metrics for the company.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": -3.47,
  "six_month_return": -10.55,
  "three_month_return": 12.72
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 0.1,
  "total_btc_percentage": 0.0,
  "share_price_change_state": "up"
}