Dashboard

S-1 offering history

GET/api/filings/offering

Stock Pro

Returns S-1/S-1A offering filings for a company, ordered by filing date ascending. Tracks the evolution of IPO terms across amended registration statements.

Preliminary filings may have null values for price and share fields.

Get API key Try it live in the API explorer

Query parameters

Example request

curl 'https://api.stockfit.io/v1/api/filings/offering?symbol=AAPL&cik=320193&cusip=037833100&composite_figi=BBG000B9XRY4&share_class_figi=BBG001S5N8V8' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'

Responses

200 OK

Paginated list of S-1 offering filings

Response schema

  • page integer
  • pageSize integer
  • totalPages integer
  • totalResults integer
  • data array of object
    array of:
    • filedDate string

      Filing date (YYYY-MM-DD)

    • accessionNumber string

      SEC accession number

    • sharesOffered integer

      Number of shares offered by the company. Omitted when unreported.

    • sharesOfferedSelling integer

      Number of shares offered by selling stockholders. 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.

    • overallotmentShares integer

      Number of additional shares the underwriters may purchase. Omitted when unreported.

    • useOfProceeds string

      Summary of intended use of offering proceeds. Omitted when unreported.

Example response

{
  "page": 1,
  "pageSize": 10,
  "totalPages": 1,
  "totalResults": 3,
  "data": [
    {
      "filedDate": "2024-02-22",
      "accessionNumber": "0001713445-24-000042",
      "sharesOffered": 22000000,
      "sharesOfferedSelling": 8400000,
      "priceRangeLow": 31,
      "priceRangeHigh": 34,
      "proposedMaxOffering": 748000000,
      "overallotmentShares": 3300000,
      "useOfProceeds": "General corporate purposes and working capital"
    }
  ]
}

400 Bad Request

Invalid parameters or company not found

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

{}