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": 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
}
]
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.
[
[
1778976000000,
1114.0
],
[
1779062400000,
1114.0
],
[
1779148800000,
1114.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.
[
[
1778976000000,
86256864.04
],
[
1779062400000,
85715916.78
],
[
1779148800000,
85510651.14
]
]
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": 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
}
]
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.3367,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": -0.45
}
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": 55.47,
"six_month_return": -33.66,
"three_month_return": 36.88
}
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": 141.0,
"total_btc_percentage": 0.005,
"share_price_change_state": "down"
}