# SEC Filings

Every filing a US-listed company has made — 10-Ks, 10-Qs, 8-Ks — straight from EDGAR, by registrant CIK.

- Method: `GET`
- Path: `/v1/finance/sec/filings`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `cik` | string | required | The registrant's CIK, like `0000320193` for Apple. |
| `limit` | integer | optional | How many recent filings, 1-100. |
| `max_age` | integer (seconds) | optional | Ask for data no older than this. Clamped to the product's own floor, so it can narrow the window but never force a refresh on every call. |

**Example request**

```bash
curl https://api.diraz.ae/v1/finance/sec/filings \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "cik": "0000320193",
    "name": "Apple Inc.",
    "tickers": ["AAPL"],
    "filings": [
      {
        "accessionNumber": "0000320193-26-000078",
        "form": "10-Q",
        "filingDate": "2026-07-31",
        "reportDate": "2026-06-27",
        "primaryDocument": "aapl-20260627.htm",
        "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000078/aapl-20260627.htm"
      }
    ]
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ",
    "as_of": "2026-08-21T04:05:00.000Z",
    "age_seconds": 42,
    "next_update_at": "2026-08-22T04:05:00.000Z"
  }
}
```