GET
/searchFull-text search across SEC filings
$0.01 per request
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| q | string | Yes | Search query |
| ticker | string | No | Limit search to a specific company |
| form_types | string | No | Comma-separated form types (e.g., '10-K,10-Q') |
Request
curl "https://api.redcent.io/search?q=revenue+growth&ticker=AAPL" \
-H "X-PAYMENT: <payment-token>"Response
{
"results": [
{
"cik": "0000320193",
"companyName": "Apple Inc.",
"formType": "10-K",
"filingDate": "2023-11-03",
"accessionNumber": "0000320193-23-000077",
"description": "Annual report"
}
],
"count": 15,
"source": "sec-efts"
}