Skip to main content
POST
/
api
/
sec
/
search
/
companies
/sec/search/companies
curl --request POST \
  --url https://api.anysite.io/api/sec/search/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 99,
  "timeout": 300,
  "entity_name": "",
  "forms": [
    "10-K",
    "10-Q",
    "8-K"
  ],
  "location_codes": [
    "CA"
  ],
  "date_from": "2024-01-01",
  "date_to": "2024-12-31"
}
'
[
  {
    "accession_number": "<string>",
    "file_name": "<string>",
    "document_url": "<string>",
    "@type": "SECFiling",
    "filing_type": "<string>",
    "file_date": "<string>",
    "period_ending": "<string>",
    "ciks": [
      "<string>"
    ],
    "display_names": [
      "<string>"
    ],
    "file_description": "<string>",
    "biz_locations": [
      "<string>"
    ],
    "biz_states": [
      "<string>"
    ],
    "inc_states": [
      "<string>"
    ],
    "sics": [
      "<string>"
    ],
    "items": [
      "<string>"
    ]
  }
]

Authorizations

access-token
string
header
required

Headers

access-token
string
required

Body

application/json

Payload for SEC company search.

count
integer
required

Maximum number of results to return

Required range: x <= 100
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
entity_name
string
default:""

Company name or ticker symbol to search for

forms
string[] | null

List of form types to filter by. Prefix with '-' to exclude (e.g., ['-3', '-4', '-5'])

Example:
["10-K", "10-Q", "8-K"]
location_codes
string[] | null

State codes to filter by (e.g., ['CA', 'NY'])

Example:
["CA"]
date_from
string | null

Start date in YYYY-MM-DD format

Example:

"2024-01-01"

date_to
string | null

End date in YYYY-MM-DD format

Example:

"2024-12-31"

Response

Successful Response

accession_number
string
required
file_name
string
required
document_url
string
required
@type
string
default:SECFiling
filing_type
string | null
file_date
string | null
period_ending
string | null
ciks
string[] | null
display_names
string[] | null
file_description
string | null
biz_locations
string[] | null
biz_states
string[] | null
inc_states
string[] | null
sics
string[] | null
items
string[] | null