Sequans Communications SA
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/sequans-communications-sa/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/sequans-communications-sa/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"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
},
{
"date": 1779926400000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://sequans.com/sequans-completes-full-redemption-of-convertible-debt-reestablishes-pure-play-focus-on-iot-semiconductor-growth/",
"holding_balance": 658.0,
"holding_net_change": -456.0,
"transaction_value_usd": 33527459.28,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/sequans-communications-sa/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1786924800000,
658.0
],
[
1787011200000,
658.0
],
[
1787097600000,
658.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/sequans-communications-sa/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1786924800000,
41339468.52
],
[
1787011200000,
42437749.48
],
[
1787097600000,
42567566.3
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/sequans-communications-sa/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 2.85,
"date": "2026-08-14",
"high": 3.05,
"open": 2.85,
"close": 3.02,
"volume": 34300
},
{
"low": 2.93,
"date": "2026-08-17",
"high": 3.08,
"open": 3.06,
"close": 3.02,
"volume": 38500
},
{
"low": 2.95,
"date": "2026-08-18",
"high": 3.09,
"open": 3.01,
"close": 3.06,
"volume": 28274
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/sequans-communications-sa/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": -0.4033,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": -0.47
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/sequans-communications-sa/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 12.5,
"six_month_return": 0.0,
"three_month_return": -24.44
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/sequans-communications-sa/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 94.0,
"total_btc_percentage": 0.003,
"share_price_change_state": "down"
}