Skip to main content

GET /v1/dilution/events/

Retrieve a single dilution event by id, including the full verification block, offering economics, and provenance pointer.
Use this endpoint from server-side applications, SDKs, or agent workflows.

Response metadata

  • requestId
  • traceparent
  • verification
  • provenance

Path parameters

ParamTypeDescription
event_idstringPrimary key of the dilution event row (e.g. dil_evt_acme_424b5_2026q1).

Query parameters

ParamTypeDescription
viewdefault | compact | agentResponse shape — agent compresses verification via summarizeVerification.

Example request

curl -X GET \
  -H "x-api-key: $SECAPI_API_KEY" \
  -H "secapi-version: 2026-03-19" \
  "https://api.secapi.ai/v1/dilution/events/dil_evt_acme_424b5_2026q1"

Example response

{
  "object": "dilution_event",
  "id": "dil_evt_acme_424b5_2026q1",
  "ticker": "ACME",
  "cik": "0001234567",
  "accessionNumber": "0001234567-26-001234",
  "formType": "424B5",
  "documentUrl": "https://www.sec.gov/Archives/edgar/data/1234567/000123456726001234/424b5.htm",
  "isAtm": true,
  "offeringAmount": 50000000,
  "filedAt": "2026-02-12T20:31:00.000Z",
  "verification": {
    "sourceSpan": "424b5#section-3#char[1240..1620]",
    "extractionTraceId": "lf_2026q1_acme_424b5_extract",
    "confidence": 0.92,
    "crossValidations": [
      { "name": "shares_amount_consistency", "passed": true },
      { "name": "citation_verifier", "passed": true }
    ],
    "modelVersion": "dilution-v1.4",
    "verifiedAt": "2026-02-12T20:34:18.000Z"
  },
  "provenance": {
    "source": "sec.gov",
    "accessionNumber": "0001234567-26-001234",
    "filingUrl": "https://www.sec.gov/Archives/edgar/data/1234567/000123456726001234/424b5.htm",
    "retrievedAt": "2026-02-12T20:34:18.000Z"
  },
  "requestId": "req_example_123",
  "traceparent": "00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-01"
}

Errors

  • 404 dilution_event_not_found — no row matches event_id.

Give this prompt to your agent

Copy this SEC API prompt for your agent.

Errors and partial results

  • Treat non-2xx responses as API errors and log the response body for debugging
  • Log requestId and traceparent so SEC API support can trace the request
  • on 404 dilution_event_not_found, do not retry; the id is wrong or no extracted row exists