Get the result of an accepted filing items request
Always answers HTTP 404 not_found, for any request id. Financial Datasets can accept a filing-item extraction and hand back a request id to poll; this server has no such queue. /filings/items runs the extraction inline and returns the items on the same response, so no request id it could be given ever existed. Reporting a request as pending, when it will never complete, would leave a client polling forever, so a not_found is the honest answer. Costs nothing and makes no upstream call.
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.
Path Parameters
The request id to look up. No id resolves, because this server never issues one.
Response
401 Unauthorized. The X-API-KEY header was missing, empty, or contained control characters, or (if the operator configured an allowlist) the key is not on it. This check runs before any Monid call.
Uniform error/soft-failure body: {"error": , "message": }. Used both for real HTTP error statuses and for 200 OK "not_found"/"not_implemented" soft failures that this API never bills for.