Sequans Communications SA

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/sequans-communications-sa/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/sequans-communications-sa/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "date": 1766966400000,
    "type": "sell",
    "coin_id": "bitcoin",
    "source_url": "https://sequans.com/sequans-communications-unaudited-fourth-quarter-and-full-year-2025-financial-results/",
    "holding_balance": 2139.0,
    "holding_net_change": -50.0,
    "transaction_value_usd": 4595000.0,
    "average_entry_value_usd": -91900.0,
    "transaction_value_calculated": false
  },
  {
    "date": 1770681600000,
    "type": "sell",
    "coin_id": "bitcoin",
    "source_url": "https://sequans.com/bitcoin-treasury/",
    "holding_balance": 2014.0,
    "holding_net_change": -125.0,
    "transaction_value_usd": 8000000.0,
    "average_entry_value_usd": -64000.0,
    "transaction_value_calculated": false
  },
  {
    "date": 1777507200000,
    "type": "sell",
    "coin_id": "bitcoin",
    "source_url": "https://sequans.com/sequans-communications-preliminary-unaudited-first-quarter-2026-financial-results/",
    "holding_balance": 1114.0,
    "holding_net_change": -900.0,
    "transaction_value_usd": 68689881.0,
    "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/sequans-communications-sa/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1778976000000,
    1114.0
  ],
  [
    1779062400000,
    1114.0
  ],
  [
    1779148800000,
    1114.0
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/sequans-communications-sa/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1778976000000,
    86256864.04
  ],
  [
    1779062400000,
    85715916.78
  ],
  [
    1779148800000,
    85510651.14
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/sequans-communications-sa/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 3.9,
    "date": "2026-05-15",
    "high": 4.22,
    "open": 4.21,
    "close": 4.01,
    "volume": 502900
  },
  {
    "low": 3.8,
    "date": "2026-05-18",
    "high": 4.2,
    "open": 4.18,
    "close": 4.05,
    "volume": 689300
  },
  {
    "low": 3.8044,
    "date": "2026-05-19",
    "high": 4.1999,
    "open": 4.01,
    "close": 4.12,
    "volume": 370078
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/sequans-communications-sa/company-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "eps_estimate_next_quarter": -0.3367,
  "quarterly_earnings_growth": 0,
  "eps_estimate_current_quarter": -0.45
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/sequans-communications-sa/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": 55.47,
  "six_month_return": -33.66,
  "three_month_return": 36.88
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/sequans-communications-sa/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 141.0,
  "total_btc_percentage": 0.005,
  "share_price_change_state": "down"
}