Dashboard

Recent S-1 offerings

GET/api/filings/recent-offerings

Stock Pro

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).

Get API key Try it live in the API explorer

Query parameters

Example request

curl 'https://api.stockfit.io/v1/api/filings/recent-offerings?days=90' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'

Responses

200 OK

Paginated list of recent S-1 offerings across all companies

Response schema

  • page integer
  • pageSize integer
  • totalPages integer
  • totalResults integer
  • data array of object
    array of:
    • 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.

Example response

{
  "page": 1,
  "pageSize": 20,
  "totalPages": 3,
  "totalResults": 47,
  "data": [
    {
      "cik": 1713445,
      "filedDate": "2024-02-22",
      "isPriced": true,
      "symbol": "RDDT",
      "name": "Reddit, Inc.",
      "sharesOffered": 22000000,
      "priceRangeLow": 31,
      "priceRangeHigh": 34,
      "proposedMaxOffering": 748000000
    }
  ]
}

400 Bad Request

Invalid parameters

Response schema

  • error string

    Human-readable error message

Example response

{}

403 Forbidden

Feature not available on current plan

Response schema

  • error string

    Human-readable error message

Example response

{}