---
title: "Recent S-1 offerings"
method: GET
path: "/api/filings/recent-offerings"
tags: ["SEC Filings"]
---

# Recent S-1 offerings

`GET /api/filings/recent-offerings`

![Stock](https://img.shields.io/badge/Stock-f97316) ![Pro](https://img.shields.io/badge/Pro-8b5cf6)

Cross-company endpoint — no symbol required. Returns the most recent S-1/S-1A offering
per company, filtered to filings within the specified number of days. Useful for tracking
upcoming IPOs and recent registration statements across the market.

Each result includes the latest offering terms for that company. The `isPriced` flag indicates
whether the offering has a price range set (i.e. `priceRangeLow` is not null).

## Query parameters

- `days` integer
- `page` integer
- `pageSize` integer

## Response `200`

Paginated list of recent S-1 offerings across all companies

- object
  - `page` integer
  - `pageSize` integer
  - `totalPages` integer
  - `totalResults` integer
  - `data` object[]
    - `cik` integer — SEC CIK number
    - `filedDate` string — Filing date (YYYY-MM-DD)
    - `isPriced` boolean — Whether the offering has a price range set
    - `symbol` string — Primary ticker symbol. Omitted when the issuer has no ticker yet.
    - `name` string — Company name. Omitted when unresolved.
    - `sharesOffered` integer — Number of shares offered by the company. Omitted when unreported.
    - `priceRangeLow` number — Low end of proposed price range (USD). Omitted when unpriced.
    - `priceRangeHigh` number — High end of proposed price range (USD). Omitted when unpriced.
    - `proposedMaxOffering` number — Proposed maximum aggregate offering price (USD). Omitted when unreported.

## Other responses

- `400` — Invalid parameters
- `403` — Feature not available on current plan

---

[API](https://skmtc.net/stockfit/apis/stockfit-api.md) · [All operations](https://skmtc.net/stockfit/apis/stockfit-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/stockfit/stockfit-api/revisions/3d5897270d8a/schema)
