SEC EDGAR
SEC EDGAR Company Profile API
The full profile of one SEC filer: legal and former names, SIC industry, filer category, EIN, LEI, state of incorporation, fiscal year end, business and mailing addresses, every ticker with its listing exchange, which forms it files and how often, and a preview of its 10 most recent filings, as JSON. Costs 1 credit per request.
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsoncikstringFiler CIK in any spelling (1-20 characters): 320193, 0000320193 or CIK0000320193 all resolve to the same filer. A ticker is accepted here too. Either cik or ticker is required.
Example: 0000320193
tickerstringTicker symbol (1-20 characters), dotted or dashed - BRK.B and BRK-B both work. WINS over cik when both are given. Either cik or ticker is required.
Example: AAPL
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
profile = client.sec.company(ticker="AAPL")
print(profile)Response