GET
/stocks/filings/v1/risk-factors
Risk Factors
Retrieve risk factors from SEC filings for public companies.
Endpoint Details
| HTTP Method | GET |
|---|---|
| Path | /stocks/filings/v1/risk-factors |
| Version | stocks/filings/v1 |
| Minimum Plan | free |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
api_key |
string | Required | Your API key for authentication |
limit |
integer | Optional | Maximum number of results to return |
sort |
string | Optional | Sort order (asc or desc) |
Example Request
curl "https://mail.tradeiqai.com/api/stocks/filings/v1/risk-factors?api_key=YOUR_API_KEY"
Note: Replace YOUR_API_KEY with your actual API key.
Response Attributes
| Attribute | Type | Description |
|---|---|---|
ok | boolean | Indicates if the request was successful (e.g., 1) |
data | object | Response data object |
data.status | string | Response status (typically "OK") (e.g., OK) |
data.results | object|array | Empty array |
Example Response
{
"ok": true,
"data": {
"status": "OK",
"request_id": null,
"results": [],
"next_url": null
}
}