Get SEC filings
Lists SEC filings for a ticker, sourced from Monid’s DefiLlama /equities/v1/filings endpoint. cik is accepted for Financial Datasets parameter parity but always answers 400 bad_request (“cik lookup is not supported; pass ticker instead”); only ticker lookup is routed.
filing_type may be repeated (?filing_type=10-K&filing_type=10-Q) and is validated against 10-K, 10-Q, 8-K, 20-F, 6-K — a stricter enum than Financial Datasets’ free-text example (e.g. “DEF 14A” is not accepted here).
Authorizations
The caller's own Monid API key (get one at https://monid.ai?fpr=dhruv-15136b). Passed straight through to Monid on every call, so usage bills the caller's own wallet — this is never a shared server-side credential, and the server never logs or stores it. Missing, empty, or malformed values answer 401 unauthorized before any paid call is attempted.
Query Parameters
Uppercase-normalized ticker symbol (1-20 letters/digits/dots/hyphens). Either ticker or cik is accepted, but only ticker is actually routed.
Accepted for FD parameter parity but always answers 400 bad_request; pass ticker instead.
Number of records to retrieve (default: 10, max: 1000). REST-level default is 10; the get_filings tool/FD-schema default is 100.
1 <= x <= 1000Filter by filing type(s). Repeat the parameter for multiple types. Invalid or empty values answer 400 bad_request.
10-K, 10-Q, 8-K, 20-F, 6-K Opaque base64url pagination cursor from a previous response's next_page_url. Omit for the first page.
Response
Real AAPL filings captured from our own live API (docs/our-live-samples/filings.json).
Wrapped list envelope: {"filings": [...], "next_page_url": "..."}. Page size is 10 records (100 for /prices).