API Reference
Trading suspensions
SEC trading-suspension orders.
Trading suspensions
SEC trading-suspension orders.
- Base URL:
https://api.clous.ai - Auth:
Authorization: Bearer clous_live_...
GET /v1/trading-suspensionsResults are returned through the standard response envelope and are cursor-paginated.
Query parameters
Prop
Type
Example request
curl -s "https://api.clous.ai/v1/trading-suspensions?limit=3" \
-H "Authorization: Bearer clous_live_..."import requests
resp = requests.get(
"https://api.clous.ai/v1/trading-suspensions",
params={"limit":"3"},
headers={"Authorization": "Bearer clous_live_..."},
)
data = resp.json()const resp = await fetch(
"https://api.clous.ai/v1/trading-suspensions?limit=3",
{ headers: { Authorization: "Bearer clous_live_..." } },
);
const data = await resp.json();Example response
{
"data": [
{
"id": 1,
"release_number": "34-104763",
"company_name": "TechCreate Group Ltd.",
"normalized_name": "techcreate group",
"suspension_date": "2026-02-02T00:50:54",
"order_url": "https://www.sec.gov/files/litigation/suspensions/2026/34-104763-ts.pdf",
"source_url": "https://www.sec.gov/enforcement-litigation/trading-suspensions",
"source_type": "sec_trading_suspension"
},
{
"id": 2,
"release_number": "34-104613",
"company_name": "JM Group Limited",
"normalized_name": "jm group",
"suspension_date": "2026-01-15T00:51:35",
"order_url": "https://www.sec.gov/files/litigation/suspensions/2026/34-104613-ts.pdf",
"source_url": "https://www.sec.gov/enforcement-litigation/trading-suspensions",
"source_type": "sec_trading_suspension"
}
],
"page": {
"limit": 3,
"next_cursor": "MjAyNTEyMDV8Mw",
"has_more": true
},
"as_of": "2026-06-13T16:27:35.851292Z",
"source": "sec",
"query_echo": {
"limit": 3
},
"warnings": []
}Status codes
| Status | Meaning |
|---|---|
200 | Success. An empty result still returns 200 with data: [] and a warnings entry. |
401 | Missing or invalid API key. |
402 | Out of credits. |
404 | No record for the supplied path parameter. |
422 | Validation error — a parameter was the wrong type or out of range. |
429 | Rate limited. |
All data derives from public SEC EDGAR (and, where noted, FINRA IAPD / USPTO) filings. Clous is independent of the SEC.