Quickstart

Three steps to your first request. Requests go through the RapidAPI marketplace proxy; auth is a single header.

01

Subscribe on the marketplace

Pick Risk API or Funding API on RapidAPI and choose a plan, including free.

02

Get your key

RapidAPI issues an X-RapidAPI-Key header tied to your subscription.

03

Make a call

Send the header with any request. No separate signup on our side.

Base URLs

Risk API      https://filingwire.io/risks/v1
Funding API   https://filingwire.io/funding/v1

Risk API example

curl "https://filingwire.io/risks/v1/critical" \
  -H "X-RapidAPI-Key: YOUR_KEY"
{
  "items": [
    {
      "accession_number": "0001193125-26-291511",
      "cik": "0001473844",
      "entity_name": "Stellar Bancorp, Inc.",
      "filed_at": "2026-07-01T00:00:00Z",
      "item_codes": ["2.01", "3.01", "5.01", "5.02"],
      "event_type": "merger_acquisition",
      "severity": "critical",
      "summary": "Stellar Bancorp merged into Prosperity Bancshares...",
      "confidence": 0.98,
      "source_url": "https://www.sec.gov/Archives/edgar/data/1473844/...",
      "tickers": ["STEL"]
    }
  ],
  "page": 1,
  "page_size": 1,
  "total": 1221,
  "has_more": true
}

Funding API example

curl "https://filingwire.io/funding/v1/large-raises" \
  -H "X-RapidAPI-Key: YOUR_KEY"
{
  "items": [
    {
      "accession_number": "0001962463-26-000002",
      "cik": "0001962463",
      "entity_name": "Dolce Glow, Inc.",
      "state_or_country": "CA",
      "industry_group": "Retailing",
      "filed_at": "2026-07-24T00:00:00Z",
      "date_of_first_sale": "2026-07-07",
      "total_offering_amount_usd": 11000000.0,
      "total_amount_sold_usd": 10750000.0,
      "federal_exemption": "06b",
      "source_url": "https://www.sec.gov/Archives/edgar/data/1962463/..."
    }
  ],
  "page": 1,
  "page_size": 1,
  "total": 4118,
  "has_more": true
}

Risk API endpoints

latest
events
critical
events/{accession}
companies/{cik}
companies/by-ticker/{ticker}
meta
health
Full Swagger docs

Funding API endpoints

latest
filings
large-raises
filings/{accession}
companies/{cik}
meta
health
Full Swagger docs
All requests go through the marketplace proxy. Send your RapidAPI key as the X-RapidAPI-Key header; there is no separate account or token on our side.
See pricing Risk API overview Funding API overview