SEC Full Text Search
Search within SEC filing content for specific terms or phrases.
Overview
This tool searches within SEC filing content for specific terms, phrases, and topics. It supports boolean operators, wildcards, and exact phrase matching. Useful for risk monitoring, competitive intelligence, and due diligence research.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
query | string | Yes | cybersecurity incident | Search query with boolean operators |
filingTypes | string[] | No | - | Limit to specific form types (e.g., ["10-K", "8-K"]) |
tickers | string[] | No | - | Limit to specific company tickers |
startDate | string | No | 30 days ago | Start date (YYYY-MM-DD) |
endDate | string | No | Today | End date (YYYY-MM-DD) |
limit | number | No | 20 | Maximum results (max: 100) |
Required Integrations
sec_api
Query Syntax
Boolean Operators
| Operator | Example | Description |
|---|---|---|
| AND | cybersecurity AND breach | Both terms required |
| OR | "going concern" OR "substantial doubt" | Either phrase |
| NOT | acquisition NOT merger | Exclude term |
Wildcards
| Pattern | Example | Matches |
|---|---|---|
* | layoff* | layoff, layoffs, layoffed |
Exact Phrases
Use quotes for exact phrase matching:
"material weakness"- Exact phrase"going concern"- Exact phrase
Common Use Cases
Risk Monitoring
{
"tool": "sec_full_text_search",
"parameters": {
"query": "\"material weakness\"",
"filingTypes": ["10-K", "10-Q"]
}
}
Cybersecurity Incidents
{
"tool": "sec_full_text_search",
"parameters": {
"query": "\"cybersecurity incident\" OR \"data breach\"",
"filingTypes": ["8-K"]
}
}
M&A Activity
{
"tool": "sec_full_text_search",
"parameters": {
"query": "acquisition OR merger OR \"change of control\"",
"limit": 50
}
}
Restructuring
{
"tool": "sec_full_text_search",
"parameters": {
"query": "layoff* OR \"workforce reduction\" OR restructuring"
}
}
Leadership Changes
{
"tool": "sec_full_text_search",
"parameters": {
"query": "\"chief executive\" OR \"board of directors\"",
"filingTypes": ["8-K"]
}
}
Going Concern Warnings
{
"tool": "sec_full_text_search",
"parameters": {
"query": "\"going concern\" OR \"substantial doubt\""
}
}
Example Response
{
"data": {
"total": 150,
"query": "\"cybersecurity incident\"",
"filings": [
{
"accessionNumber": "0001234567-24-000123",
"formType": "8-K",
"filedAt": "2025-01-15",
"companyName": "Example Corp",
"ticker": "EXPL",
"cik": "0001234567",
"filingUrl": "https://sec.gov/...",
"description": "Current Report - Cybersecurity Incident"
}
],
"searchParams": {
"filingTypes": ["8-K"],
"startDate": "2025-01-01",
"endDate": "2025-01-31",
"limit": 20
}
}
}
Error Handling
Common errors:
- Invalid query syntax: Check query format
- Authentication failed: Check SEC API key
- Rate limit exceeded: Wait before retrying
Related Tools
sec_filing_section- Extract specific sections from filingscompany_firmographic- Get company information