Light Mode Dark Mode ParheliaWeb

IPO Filings API

Real‑time SEC filing data for VCs, investment bankers, and institutional investors.

Base URL: https://parheliaweb.com

All requests must include an API key in the x-api-key header. Responses are in JSON.

πŸš€ Quick Start (Free):
  1. Subscribe free at /register β€” no card required
  2. Get your universal API key in the portal
  3. Query this API β€” 100/day free, access to the latest 30 days
  4. Upgrade anytime β€” same key, more quota, historical data unlocked
πŸ—οΈ Universal API Key: Your ParheliaWeb key works across all six APIs β€” this one, Email Validation, Funding, Layoffs, Fines, and Acquisitions. A free tier is available for each of these APIs. Manage usage for all APIs in the portal.

πŸ’Ά Pricing & Currency

All prices are listed in Euros (EUR). Your card will be charged in your local currency at the prevailing exchange rate. We use Stripe for secure payment processing, which supports 135+ currencies and local payment methods including iDEAL, Bancontact, and SEPA Direct Debit.

EU-Based: ParheliaWeb is built and hosted in the Netherlands. All data processing complies with GDPR. Our servers are located in Dutch data centers, ensuring low latency for European customers and full compliance with EU data protection regulations.

πŸ” Authentication

Pass your secret API key as an HTTP header on every request:

x-api-key: YOUR_API_KEY

If the key is missing or invalid, you'll receive a 401 Unauthorized or 403 Forbidden.

πŸ“‘ Rate Limits & Access

PlanDaily QuotaRate LimitData AccessFieldsSupport
Free100 calls / day60 requests / minuteLast 30 days onlyBasic (company, filing type, ticker, exchange, date, url)β€”
Pro (€29/month)1,000 calls / day60 requests / minuteFull dataset (up to 10 years)+ status, sector, country, country of incorporation, underwriters, shares, price range, direct listing, SPAC flagEmail support

When you exceed the limit, the API returns 429 Too Many Requests.

Why our free tier isn't like others: Most data APIs limit free users to crippled datasets or time-limited trials. We give you real data β€” 100 queries/day, forever, from the same engine our paid customers use. Because we trust our data quality enough to let you test it properly.

πŸ“¦ Endpoint: Get IPO Filings

GET /v1/ipos

Returns the most recent S-1 and F-1 filings from the SEC EDGAR system. Currently tracking 37 IPO filings.

Query Parameters

ParameterTypeDefaultDescription
max_age_daysinteger365Maximum age of data in days. Free tier limited to 30 days. Pro tier: up to 3650 (10 years).
max_recordsinteger500Maximum records returned. Range: 1-5000.

Example Requests

# Get IPO filings (default: 365 days for Pro, 30 days for Free)
curl -H "x-api-key: YOUR_KEY" https://parheliaweb.com/v1/ipos

# Get IPO filings from the last 30 days only
curl -H "x-api-key: YOUR_KEY" "https://parheliaweb.com/v1/ipos?max_age_days=30"

# Pro tier: Get all records (up to 10 years)
curl -H "x-api-key: YOUR_KEY" "https://parheliaweb.com/v1/ipos?max_age_days=3650"

Example Response (Pro tier)

{
  "user_tier": "pro",
  "count": 1,
  "max_age_days": 365,
  "last_crawled": "2026-05-28T15:13:19Z",
  "results": [{
    "company_name": "Firefly Aerospace",
    "filing_type": "S-1",
    "filing_date": "2026-05-28",
    "description": null,
    "source_url": "https://www.sec.gov/Archives/edgar/data/...",
    "source_status": "active",
    "ipo_status": "Filed",
    "sector": "Aerospace",
    "country": "US",
    "country_incorporation": "US",
    "lead_underwriters": "Goldman Sachs",
    "shares_offered": "20M",
    "price_range": "$17-$19",
    "is_direct_listing": false,
    "is_spac": false
  }]
}

Response Fields

FieldTypeDescription
user_tierstringYour subscription tier (free, pro)
countintegerNumber of results returned
max_age_daysintegerThe max age filter applied (capped at 30 for Free tier)
last_crawledstringISO 8601 timestamp (UTC) of the last crawler run
company_namestringCompany filing for IPO
filing_typestringS-1 (US) or F-1 (foreign)
filing_datestringDate of SEC filing (YYYY-MM-DD)
descriptionstring|nullAdditional description
source_urlstringDirect link to SEC EDGAR filing
source_statusstring"active" β€” SEC filings are permanently archived
ipo_statusstring|nullPro tier: Filed, Priced, or Trading
sectorstring|nullPro tier: Industry sector
countrystring|nullPro tier: Country of the stock exchange where the IPO is filed (e.g., US for NASDAQ/NYSE)
country_incorporationstring|nullPro tier: Country where the company is legally incorporated (may differ from listing country)
lead_underwritersstring|nullPro tier: Investment banks leading the IPO
shares_offeredstring|nullPro tier: Number of shares in offering
price_rangestring|nullPro tier: Expected price range per share
is_direct_listingbooleanPro tier: True if direct listing
is_spacbooleanPro tier: True if SPAC merger
Data Source: IPO filings are sourced directly from the SEC EDGAR system. Our AI filters out SPACs and non-IPO filing types to ensure data quality.
AI-Verified Data: Every filing is cross-checked by DeepSeek AI. Pro tier fields are extracted from the filing metadata.

πŸ’» Code Snippets

Python

import requests
headers = {"x-api-key": "YOUR_API_KEY"}
resp = requests.get("https://parheliaweb.com/v1/ipos", headers=headers)
for item in resp.json()["results"]:
    print(item["company_name"], item["filing_type"], item["filing_date"])

JavaScript (fetch)

fetch("https://parheliaweb.com/v1/ipos", {
  headers: { "x-api-key": "YOUR_API_KEY" }
})
.then(res => res.json())
.then(data => console.log(data.results));

cURL

curl -H "x-api-key: YOUR_API_KEY" https://parheliaweb.com/v1/ipos

πŸ—οΈ Your Key Works Across All ParheliaWeb APIs

Your API key isn't limited to this API. Use it across our full platform:

APIEndpoint BaseFree TierPro Tier
IPOs/v1/ipos100/day1,000/day
Email Validation/v1/email/validate100/mo25,000/mo
Funding Rounds/v1/funding100/day1,000/day
Layoffs/v1/layoffs100/day1,000/day
Regulatory Fines/v1/fines100/day1,000/day
Acquisitions/v1/acquisitions100/day1,000/day

Quotas are per-API. Upgrade each API independently based on your needs. Why different quotas? Email validation performs live SMTP handshakes β€” per-check infrastructure cost. Data APIs query our cached database β€” lower marginal cost.

πŸ“¬ Support

If you run into any issues or have feature suggestions, email us at info@parheliaweb.com.

IPO Filings API by ParheliaWeb Β· Built in the Netherlands Β· Terms Β· Privacy Β· Why Choose Us Β· Contact

AI verification powered by DeepSeek