API reference / Fundamentals & corporate actions

Fundamentals & corporate actions

Financial statements, dividends, splits, corporate events, IPOs.

6 endpoints. Pay per call in USDC via x402 with no account, or get unlimited calls for $99/mo. Every response is shaped { ticker, data, source, as_of }.

GET/api/v1/financials/{ticker}$0.02

Fundamentals: income, balance sheet, and cash flow statements

Per-period financial statements (income statement, balance sheet, cash flow, comprehensive income) sourced from SEC filings, flattened to fact_key → value maps. Pass `?timeframe=annual|quarterly|ttm` and `?limit=`.

Example request
GET /api/v1/financials/AAPL
Response type (TypeScript)
interface FinancialsResponse {
  ticker: string;
  data: {
    count: number;
    reports: Array<{
      company_name: string;
      cik: string;
      timeframe: string;
      fiscal_period: string;
      fiscal_year: string;
      start_date: string;
      end_date: string;
      filing_date: string;
      source_filing_url: string;
      statements: {
        balance_sheet: {
          long_term_debt: number;
          liabilities_and_equity: number;
          equity: number;
          noncurrent_assets: number;
          other_current_assets: number;
          accounts_payable: number;
          current_liabilities: number;
          fixed_assets: number;
          current_assets: number;
          equity_attributable_to_noncontrolling_interest: number;
          other_noncurrent_assets: number;
          other_noncurrent_liabilities: number;
          noncurrent_liabilities: number;
          other_current_liabilities: number;
          inventory: number;
          liabilities: number;
          assets: number;
          equity_attributable_to_parent: number;
        };
        cash_flow_statement: {
          net_cash_flow_from_financing_activities_continuing: number;
          net_cash_flow_from_investing_activities_continuing: number;
          net_cash_flow: number;
          net_cash_flow_from_operating_activities: number;
          net_cash_flow_from_financing_activities: number;
          net_cash_flow_continuing: number;
          net_cash_flow_from_operating_activities_continuing: number;
          net_cash_flow_from_investing_activities: number;
        };
        income_statement: {
          net_income_loss_attributable_to_noncontrolling_interest: number;
          diluted_average_shares: number;
          income_tax_expense_benefit: number;
          gross_profit: number;
          operating_income_loss: number;
          basic_earnings_per_share: number;
          research_and_development: number;
          income_loss_from_continuing_operations_before_tax: number;
          operating_expenses: number;
          basic_average_shares: number;
          net_income_loss_attributable_to_parent: number;
          nonoperating_income_loss: number;
          cost_of_revenue: number;
          net_income_loss_available_to_common_stockholders_basic: number;
          benefits_costs_expenses: number;
          preferred_stock_dividends_and_other_adjustments: number;
          net_income_loss: number;
          participating_securities_distributed_and_undistributed_earnings_loss_basic: number;
          revenues: number;
          income_loss_from_continuing_operations_after_tax: number;
          diluted_earnings_per_share: number;
          costs_and_expenses: number;
          selling_general_and_administrative_expenses: number;
        };
        comprehensive_income: {
          comprehensive_income_loss_attributable_to_parent: number;
          comprehensive_income_loss: number;
          comprehensive_income_loss_attributable_to_noncontrolling_interest: number;
          other_comprehensive_income_loss: number;
          other_comprehensive_income_loss_attributable_to_parent: number;
        };
      };
    }>;
  };
  source: string;
  as_of: string;
}
Example response (click to expand)
{
  "ticker": "AAPL",
  "data": {
    "count": 4,
    "reports": [
      {
        "company_name": "Apple Inc.",
        "cik": "0000320193",
        "timeframe": "annual",
        "fiscal_period": "FY",
        "fiscal_year": "2025",
        "start_date": "2024-09-29",
        "end_date": "2025-09-27",
        "filing_date": "2025-10-31",
        "source_filing_url": "https://api.polygon.io/v1/reference/sec/filings/0000320193-25-000079",
        "statements": {
          "balance_sheet": {
            "long_term_debt": 90678000000,
            "liabilities_and_equity": 359241000000,
            "equity": 73733000000,
            "noncurrent_assets": 211284000000,
            "other_current_assets": 142239000000,
            "accounts_payable": 69860000000,
            "current_liabilities": 165631000000,
            "fixed_assets": 49834000000,
            "current_assets": 147957000000,
            "equity_attributable_to_noncontrolling_interest": 0,
            "other_noncurrent_assets": 161450000000,
            "other_noncurrent_liabilities": 29199000000,
            "noncurrent_liabilities": 119877000000,
            "other_current_liabilities": 95771000000,
            "inventory": 5718000000,
            "liabilities": 285508000000,
            "assets": 359241000000,
            "equity_attributable_to_parent": 73733000000
          },
          "cash_flow_statement": {
            "net_cash_flow_from_financing_activities_continuing": -120686000000,
            "net_cash_flow_from_investing_activities_continuing": 15195000000,
            "net_cash_flow": 5991000000,
            "net_cash_flow_from_operating_activities": 111482000000,
            "net_cash_flow_from_financing_activities": -120686000000,
            "net_cash_flow_continuing": 5991000000,
            "net_cash_flow_from_operating_activities_continuing": 111482000000,
            "net_cash_flow_from_investing_activities": 15195000000
          },
          "income_statement": {
            "net_income_loss_attributable_to_noncontrolling_interest": 0,
            "diluted_average_shares": 15004697000,
            "income_tax_expense_benefit": 20719000000,
            "gross_profit": 195201000000,
            "operating_income_loss": 133050000000,
            "basic_earnings_per_share": 7.49,
            "research_and_development": 34550000000,
            "income_loss_from_continuing_operations_before_tax": 132729000000,
            "operating_expenses": 62151000000,
            "basic_average_shares": 14948500000,
            "net_income_loss_attributable_to_parent": 112010000000,
            "nonoperating_income_loss": -321000000,
            "cost_of_revenue": 220960000000,
            "net_income_loss_available_to_common_stockholders_basic": 112010000000,
            "benefits_costs_expenses": 283432000000,
            "preferred_stock_dividends_and_other_adjustments": 0,
            "net_income_loss": 112010000000,
            "participating_securities_distributed_and_undistributed_earnings_loss_basic": 0,
            "revenues": 416161000000,
            "income_loss_from_continuing_operations_after_tax": 112010000000,
            "diluted_earnings_per_share": 7.46,
            "costs_and_expenses": 283432000000,
            "selling_general_and_administrative_expenses": 27601000000
          },
          "comprehensive_income": {
            "comprehensive_income_loss_attributable_to_parent": 113611000000,
            "comprehensive_income_loss": 113611000000,
            "comprehensive_income_loss_attributable_to_noncontrolling_interest": 0,
            "other_comprehensive_income_loss": 113611000000,
            "other_comprehensive_income_loss_attributable_to_parent": 1601000000
          }
        }
      },
      {
        "company_name": "Apple Inc.",
        "cik": "0000320193",
        "timeframe": "annual",
        "fiscal_period": "FY",
        "fiscal_year": "2024",
        "start_date": "2023-10-01",
        "end_date": "2024-09-28",
        "filing_date": "2024-11-01",
        "source_filing_url": "https://api.polygon.io/v1/reference/sec/filings/0000320193-24-000123",
        "statements": {
          "comprehensive_income": {
            "comprehensive_income_loss_attributable_to_parent": 98016000000,
            "comprehensive_income_loss_attributable_to_noncontrolling_interest": 0,
            "other_comprehensive_income_loss_attributable_to_parent": 4280000000,
            "other_comprehensive_income_loss": 98016000000,
            "comprehensive_income_loss": 98016000000
          },
          "income_statement": {
            "net_income_loss": 93736000000,
            "preferred_stock_dividends_and_other_adjustments": 0,
            "net_income_loss_attributable_to_noncontrolling_interest": 0,
            "participating_securities_distributed_and_undistributed_earnings_loss_basic": 0,
            "operating_expenses": 57467000000,
            "operating_income_loss": 123216000000,
            "revenues": 391035000000,
            "diluted_average_shares": 15408095000,
            "income_loss_from_continuing_operations_after_tax": 93736000000,
            "net_income_loss_attributable_to_parent": 93736000000,
            "benefits_costs_expenses": 267550000000,
            "selling_general_and_administrative_expenses": 26097000000,
            "nonoperating_income_loss": 269000000,
            "cost_of_revenue": 210352000000,
            "diluted_earnings_per_share": 6.08,
            "basic_earnings_per_share": 6.11,
            "costs_and_expenses": 267550000000,
            "net_income_loss_available_to_common_stockholders_basic": 93736000000,
            "gross_profit": 180683000000,
            "income_loss_from_continuing_operations_before_tax": 123485000000,
            "research_and_development": 31370000000,
            "income_tax_expense_benefit": 29749000000,
            "basic_average_shares": 15343783000
          },
          "cash_flow_statement": {
            "net_cash_f
… (truncated — call the endpoint for the full response)
GET/api/v1/dividends/{ticker}$0.01

Dividend history (cash amount, ex-date, pay date, frequency)

Historical cash dividends for a ticker: amount, currency, type, frequency, and the declaration / ex-dividend / record / pay dates. Most recent first.

Example request
GET /api/v1/dividends/AAPL
Response type (TypeScript)
interface DividendsResponse {
  ticker: string;
  data: {
    count: number;
    dividends: Array<{
      cash_amount: number;
      currency: string;
      dividend_type: string;
      frequency: number;
      declaration_date: string;
      ex_dividend_date: string;
      record_date: string;
      pay_date: string;
    }>;
  };
  source: string;
  as_of: string;
}
Example response (click to expand)
{
  "ticker": "AAPL",
  "data": {
    "count": 10,
    "dividends": [
      {
        "cash_amount": 0.27,
        "currency": "USD",
        "dividend_type": "CD",
        "frequency": 4,
        "declaration_date": "2026-04-30",
        "ex_dividend_date": "2026-05-11",
        "record_date": "2026-05-11",
        "pay_date": "2026-05-14"
      },
      {
        "cash_amount": 0.26,
        "currency": "USD",
        "dividend_type": "CD",
        "frequency": 4,
        "declaration_date": "2026-01-29",
        "ex_dividend_date": "2026-02-09",
        "record_date": "2026-02-09",
        "pay_date": "2026-02-12"
      },
      {
        "cash_amount": 0.26,
        "currency": "USD",
        "dividend_type": "CD",
        "frequency": 4,
        "declaration_date": "2025-10-30",
        "ex_dividend_date": "2025-11-10",
        "record_date": "2025-11-10",
        "pay_date": "2025-11-13"
      },
      {
        "cash_amount": 0.26,
        "currency": "USD",
        "dividend_type": "CD",
        "frequency": 4,
        "declaration_date": "2025-07-31",
        "ex_dividend_date": "2025-08-11",
        "record_date": "2025-08-11",
        "pay_date": "2025-08-14"
      },
      {
        "cash_amount": 0.26,
        "currency": "USD",
        "dividend_type": "CD",
        "frequency": 4,
        "declaration_date": "2025-05-01",
        "ex_dividend_date": "2025-05-12",
        "record_date": "2025-05-12",
        "pay_date": "2025-05-15"
      },
      {
        "cash_amount": 0.25,
        "currency": "USD",
        "dividend_type": "CD",
        "frequency": 4,
        "declaration_date": "2025-01-30",
        "ex_dividend_date": "2025-02-10",
        "record_date": "2025-02-10",
        "pay_date": "2025-02-13"
      },
      {
        "cash_amount": 0.25,
        "currency": "USD",
        "dividend_type": "CD",
        "frequency": 4,
        "declaration_date": "2024-10-31",
        "ex_dividend_date": "2024-11-08",
        "record_date": "2024-11-11",
        "pay_date": "2024-11-14"
      },
      {
        "cash_amount": 0.25,
        "currency": "USD",
        "dividend_type": "CD",
        "frequency": 4,
        "declaration_date": "2024-08-01",
        "ex_dividend_date": "2024-08-12",
        "record_date": "2024-08-12",
        "pay_date": "2024-08-15"
      },
      {
        "cash_amount": 0.25,
        "currency": "USD",
        "dividend_type": "CD",
        "frequency": 4,
        "declaration_date": "2024-05-02",
        "ex_dividend_date": "2024-05-10",
        "record_date": "2024-05-13",
        "pay_date": "2024-05-16"
      },
      {
        "cash_amount": 0.24,
        "currency": "USD",
        "dividend_type": "CD",
        "frequency": 4,
        "declaration_date": "2024-02-01",
        "ex_dividend_date": "2024-02-09",
        "record_date": "2024-02-12",
        "pay_date": "2024-02-15"
      }
    ]
  },
  "source": "x402stock",
  "as_of": "2026-05-31T19:19:20.242Z"
}
GET/api/v1/splits/{ticker}$0.01

Stock split history

Historical stock splits for a ticker, with execution date and split ratio (split_from to split_to). Most recent first.

Example request
GET /api/v1/splits/AAPL
Response type (TypeScript)
interface SplitsResponse {
  ticker: string;
  data: {
    count: number;
    splits: Array<{
      execution_date: string;
      type: string;
      split_from: number;
      split_to: number;
      ratio: number;
      ratio_text: string;
    }>;
  };
  source: string;
  as_of: string;
}
Example response (click to expand)
{
  "ticker": "AAPL",
  "data": {
    "count": 5,
    "splits": [
      {
        "execution_date": "2020-08-31",
        "type": "forward",
        "split_from": 1,
        "split_to": 4,
        "ratio": 4,
        "ratio_text": "4:1"
      },
      {
        "execution_date": "2014-06-09",
        "type": "forward",
        "split_from": 1,
        "split_to": 7,
        "ratio": 7,
        "ratio_text": "7:1"
      },
      {
        "execution_date": "2005-02-28",
        "type": "forward",
        "split_from": 1,
        "split_to": 2,
        "ratio": 2,
        "ratio_text": "2:1"
      },
      {
        "execution_date": "2000-06-21",
        "type": "forward",
        "split_from": 1,
        "split_to": 2,
        "ratio": 2,
        "ratio_text": "2:1"
      },
      {
        "execution_date": "1987-06-16",
        "type": "forward",
        "split_from": 1,
        "split_to": 2,
        "ratio": 2,
        "ratio_text": "2:1"
      }
    ]
  },
  "source": "x402stock",
  "as_of": "2026-06-06T05:29:58.010Z"
}
GET/api/v1/splits-calendar$0.02

Split calendar: upcoming and recent forward & reverse splits across all US tickers

Market-wide split calendar across all US tickers (no ticker needed). Each row has the ticker, execution date, direction (`forward`/`reverse`), split_from/split_to, numeric `ratio`, and a human `ratio_text` like `10:1` or `1:8`. Future-dated announced splits sort first. Filter `?type=forward|reverse|all`, `?from=`/`?to=` date window, `?order=`, `?limit=`.

Example request
GET /api/v1/splits-calendar
Response type (TypeScript)
interface SplitsCalendarResponse {
  source: string;
  as_of: string;
  count: number;
  splits: Array<{
    ticker: string;
    execution_date: string;
    type: string;
    split_from: number;
    split_to: number;
    ratio: number;
    ratio_text: string;
  }>;
}
Example response (click to expand)
{
  "source": "x402stock",
  "as_of": "2026-06-06T05:29:46.146Z",
  "count": 15,
  "splits": [
    {
      "ticker": "SNKUF",
      "execution_date": "2026-09-29",
      "type": "forward",
      "split_from": 1,
      "split_to": 5,
      "ratio": 5,
      "ratio_text": "5:1"
    },
    {
      "ticker": "SNEX",
      "execution_date": "2026-07-20",
      "type": "forward",
      "split_from": 2,
      "split_to": 3,
      "ratio": 1.5,
      "ratio_text": "3:2"
    },
    {
      "ticker": "BKSE",
      "execution_date": "2026-07-20",
      "type": "forward",
      "split_from": 1,
      "split_to": 3,
      "ratio": 3,
      "ratio_text": "3:1"
    },
    {
      "ticker": "BKMC",
      "execution_date": "2026-07-20",
      "type": "forward",
      "split_from": 1,
      "split_to": 3,
      "ratio": 3,
      "ratio_text": "3:1"
    },
    {
      "ticker": "BKLC",
      "execution_date": "2026-07-20",
      "type": "forward",
      "split_from": 1,
      "split_to": 3,
      "ratio": 3,
      "ratio_text": "3:1"
    },
    {
      "ticker": "BKIE",
      "execution_date": "2026-07-20",
      "type": "forward",
      "split_from": 1,
      "split_to": 3,
      "ratio": 3,
      "ratio_text": "3:1"
    },
    {
      "ticker": "BKEM",
      "execution_date": "2026-07-20",
      "type": "forward",
      "split_from": 1,
      "split_to": 3,
      "ratio": 3,
      "ratio_text": "3:1"
    },
    {
      "ticker": "GREH",
      "execution_date": "2026-07-15",
      "type": "forward",
      "split_from": 1,
      "split_to": 1.1,
      "ratio": 1.1,
      "ratio_text": "1.1:1"
    },
    {
      "ticker": "LGHL",
      "execution_date": "2026-07-09",
      "type": "reverse",
      "split_from": 6,
      "split_to": 1,
      "ratio": 0.16666666666666666,
      "ratio_text": "1:6"
    },
    {
      "ticker": "MARUY",
      "execution_date": "2026-07-08",
      "type": "forward",
      "split_from": 1,
      "split_to": 10,
      "ratio": 10,
      "ratio_text": "10:1"
    },
    {
      "ticker": "CRWD",
      "execution_date": "2026-07-02",
      "type": "forward",
      "split_from": 1,
      "split_to": 4,
      "ratio": 4,
      "ratio_text": "4:1"
    },
    {
      "ticker": "MLI",
      "execution_date": "2026-07-01",
      "type": "forward",
      "split_from": 1,
      "split_to": 2,
      "ratio": 2,
      "ratio_text": "2:1"
    },
    {
      "ticker": "GBCMY",
      "execution_date": "2026-06-26",
      "type": "reverse",
      "split_from": 10,
      "split_to": 1,
      "ratio": 0.1,
      "ratio_text": "1:10"
    },
    {
      "ticker": "DD",
      "execution_date": "2026-06-24",
      "type": "reverse",
      "split_from": 3,
      "split_to": 1,
      "ratio": 0.3333333333333333,
      "ratio_text": "1:3"
    },
    {
      "ticker": "SMERY",
      "execution_date": "2026-06-23",
      "type": "forward",
      "split_from": 1,
      "split_to": 5,
      "ratio": 5,
      "ratio_text": "5:1"
    }
  ]
}
GET/api/v1/events/{ticker}$0.01

Corporate events (ticker changes and more)

Timeline of corporate events for a ticker, such as ticker symbol changes, with the company name, CIK, and composite FIGI.

Example request
GET /api/v1/events/AAPL
Response type (TypeScript)
interface EventsResponse {
  ticker: string;
  data: {
    name: string;
    composite_figi: string;
    cik: string;
    events: Array<{
      type: string;
      date: string;
      ticker: string;
    }>;
  };
  source: string;
  as_of: string;
}
Example response (click to expand)
{
  "ticker": "AAPL",
  "data": {
    "name": "Apple Inc.",
    "composite_figi": "BBG000B9XRY4",
    "cik": "0000320193",
    "events": [
      {
        "type": "ticker_change",
        "date": "2003-09-10",
        "ticker": "AAPL"
      }
    ]
  },
  "source": "x402stock",
  "as_of": "2026-05-31T19:19:25.460Z"
}
GET/api/v1/ipos$0.02

IPO calendar: upcoming and historical US listings with price range and size

Upcoming and historical US IPOs: issuer name, ticker, announced and listing dates, offer price range and final price, shares offered, total deal size, exchange, and status. Filter by `?ipo_status=pending|new|history|rumor`, `?ticker=`, and `?limit=`. Use to track the new-issue calendar and recently priced deals.

Example request
GET /api/v1/ipos
Response type (TypeScript)
interface IposResponse {
  source: string;
  as_of: string;
  count: number;
  ipos: Array<{
    ticker: string;
    issuer_name: string;
    status: string;
    announced_date: string;
    listing_date: null;
    primary_exchange: string;
    security_type: string;
    security_description: string;
    currency: string;
    isin: string;
    final_issue_price: number;
    lowest_offer_price: number;
    highest_offer_price: number;
    max_shares_offered: number;
    total_offer_size: number;
    shares_outstanding: number;
    last_updated: string;
  }>;
}
Example response (click to expand)
{
  "source": "x402stock",
  "as_of": "2026-06-01T18:56:03.416Z",
  "count": 10,
  "ipos": [
    {
      "ticker": "FISN",
      "issuer_name": "Deep Fission Inc.",
      "status": "pending",
      "announced_date": "2026-05-20",
      "listing_date": null,
      "primary_exchange": "XNAS",
      "security_type": "CS",
      "security_description": "Ordinary Shares",
      "currency": "USD",
      "isin": "US2439271006",
      "final_issue_price": null,
      "lowest_offer_price": 24,
      "highest_offer_price": 26,
      "max_shares_offered": 6000000,
      "total_offer_size": 156000000,
      "shares_outstanding": null,
      "last_updated": "2026-05-29"
    },
    {
      "ticker": "TP",
      "issuer_name": "Ticketplus Ltd.",
      "status": "pending",
      "announced_date": "2026-05-28",
      "listing_date": null,
      "primary_exchange": "XNAS",
      "security_type": "CS",
      "security_description": "Ordinary Shares",
      "currency": "USD",
      "isin": null,
      "final_issue_price": null,
      "lowest_offer_price": null,
      "highest_offer_price": null,
      "max_shares_offered": null,
      "total_offer_size": 28750000,
      "shares_outstanding": null,
      "last_updated": "2026-05-29"
    },
    {
      "ticker": "YLY",
      "issuer_name": "Zi Yun Dong Fang Ltd.",
      "status": "pending",
      "announced_date": "2025-05-16",
      "listing_date": null,
      "primary_exchange": "XNAS",
      "security_type": "CS",
      "security_description": "Ordinary Shares",
      "currency": "USD",
      "isin": null,
      "final_issue_price": 5,
      "lowest_offer_price": 4,
      "highest_offer_price": 6,
      "max_shares_offered": 6250000,
      "total_offer_size": 31250000,
      "shares_outstanding": 21250000,
      "last_updated": "2026-05-29"
    },
    {
      "ticker": "ENT",
      "issuer_name": "Entrata Inc.",
      "status": "pending",
      "announced_date": "2026-05-28",
      "listing_date": null,
      "primary_exchange": "XNYS",
      "security_type": "CS",
      "security_description": "Ordinary Shares - Class A",
      "currency": "USD",
      "isin": null,
      "final_issue_price": null,
      "lowest_offer_price": null,
      "highest_offer_price": null,
      "max_shares_offered": null,
      "total_offer_size": 100000000,
      "shares_outstanding": null,
      "last_updated": "2026-05-29"
    },
    {
      "ticker": "KEYYU",
      "issuer_name": "Keystone Acquisition Corp.",
      "status": "pending",
      "announced_date": "2026-05-04",
      "listing_date": null,
      "primary_exchange": "XNAS",
      "security_type": "SP",
      "security_description": "Units 1 Ord Cls A  1/2 War",
      "currency": "USD",
      "isin": null,
      "final_issue_price": 10,
      "lowest_offer_price": 10,
      "highest_offer_price": 10,
      "max_shares_offered": 25000000,
      "total_offer_size": 250000000,
      "shares_outstanding": 25000000,
      "last_updated": "2026-05-29"
    },
    {
      "ticker": "POCH",
      "issuer_name": "Poche Technology Co. Ltd",
      "status": "pending",
      "announced_date": "2026-03-18",
      "listing_date": null,
      "primary_exchange": "XNAS",
      "security_type": "CS",
      "security_description": "Ordinary Shares - Class A",
      "currency": "USD",
      "isin": null,
      "final_issue_price": null,
      "lowest_offer_price": 4,
      "highest_offer_price": 5,
      "max_shares_offered": 6250000,
      "total_offer_size": 31250000,
      "shares_outstanding": 19052200,
      "last_updated": "2026-05-29"
    },
    {
      "ticker": "RIKU",
      "issuer_name": "Riku Dining Group Ltd.",
      "status": "pending",
      "announced_date": "2025-09-12",
      "listing_date": null,
      "primary_exchange": "XNAS",
      "security_type": "CS",
      "security_description": "Ordinary Shares - Class A",
      "currency": "USD",
      "isin": "KYG7573F1019",
      "final_issue_price": 5,
      "lowest_offer_price": 4,
      "highest_offer_price": 6,
      "max_shares_offered": 5000000,
      "total_offer_size": 25000000,
      "shares_outstanding": 23000000,
      "last_updated": "2026-05-28"
    },
    {
      "ticker": "SFPT",
      "issuer_name": "Safepoint Holdings Inc.",
      "status": "pending",
      "announced_date": "2026-05-08",
      "listing_date": null,
      "primary_exchange": "XNYS",
      "security_type": "CS",
      "security_description": "Ordinary Shares",
      "currency": "USD",
      "isin": "US7869271038",
      "final_issue_price": null,
      "lowest_offer_price": 15,
      "highest_offer_price": 17,
      "max_shares_offered": 16666667,
      "total_offer_size": 283333339,
      "shares_outstanding": 68432417,
      "last_updated": "2026-05-28"
    },
    {
      "ticker": "QNT",
      "issuer_name": "Quantinuum Inc.",
      "status": "pending",
      "announced_date": "2026-05-08",
      "listing_date": null,
      "primary_exchange": "XNAS",
      "security_type": "CS",
      "security_description": "Ordinary Shares - Class A",
      "currency": "USD",
      "isin": "US74768A1043",
      "final_issue_price": null,
      "lowest_offer_price": 45,
      "highest_offer_price": 50,
      "max_shares_offered": 21052632,
      "total_offer_size": 1052631600,
      "shares_outstanding": 25948276,
      "last_updated": "2026-05-28"
    },
    {
      "ticker": "SPCX",
      "issuer_name": "Space Exploration Technologies Corp.",
      "status": "pending",
      "announced_date": "2026-05-20",
      "listing_date": null,
      "primary_exchange": "XNAS",
      "security_type": "CS",
      "security_description": "Ordinary Shares - Class A",
      "currency": "USD",
      "isin": "US84615Q1031",
      "final_issue_price": null,
      "lowest_offer_price": null,
      "highest_offer_price": null,
      "max_shares_offered": null,
      "total_offer_size": 1000000000,
      "shares_outstanding": null,
      "last_updated": "2026-05-28"
    }
  ]
}