February 23, 2026

What Is a Swaption & How Do They Work (With Pricing Examples)

Table of Contents

What Is a Swaption?

A swaption (short for "swap option") is an option that gives the holder the right — but not the obligation — to enter into an interest rate swap at a future date. The buyer pays a premium (the option's net present value) upfront for this right.

There are two types:

  • A payer swaption gives the right to pay a fixed rate and receive a floating rate. It benefits the holder when interest rates rise above the strike.
  • A receiver swaption gives the right to receive a fixed rate and pay a floating rate. It benefits the holder when interest rates fall below the strike.

Think of it this way: if you're a borrower worried that rates will rise before you close on a loan, a payer swaption lets you lock in a worst-case fixed rate today while keeping the flexibility to walk away if rates fall.

Payer SwaptionReceiver Swaption
Right grantedPay fixed, receive floatingReceive fixed, pay floating
Benefits whenRates rise above the strikeRates fall below the strike
Typical buyerBorrower hedging future debtInvestor protecting fixed income
Analogous toA call on ratesA put on rates

How Do Swaptions Work?

A swaption is defined by two time dimensions: the option expiry (when the holder decides whether to exercise) and the underlying swap tenor (the length of the swap that begins if exercised). Market convention expresses this as expiry × tenor — for example, "2Y×5Y" means the option expires in 2 years, and if exercised, the holder enters a 5-year swap.

The key terms of a swaption are:

  • Strike rate — the fixed rate of the underlying swap
  • Expiry date — when the option can be exercised
  • Underlying tenor — the length of the swap post-exercise
  • Premium (NPV) — the upfront cost of the option
  • Notional — the size of the underlying swap

Exercise Styles

Swaptions come in three exercise styles:

StyleWhen ExercisableCommon Use
EuropeanOnly on the expiry dateMost liquid, standard interbank market
BermudanOn a set of predetermined datesCallable bond hedging, structured products
AmericanAny date up to and including expiryRare in practice for interest rate swaptions

European swaptions are by far the most commonly traded and are the standard in the interbank market. When people refer to "swaption pricing" without qualification, they typically mean European-style.

Payer vs Receiver Swaptions

The choice between a payer and receiver swaption depends on the direction of rate risk you want to hedge.

Payer Swaption — Hedging Rising Rates

A payer swaption is used when a borrower or issuer wants to protect against rates rising before they lock in financing. For example, a corporate treasurer expecting to issue fixed-rate debt in 18 months might buy a payer swaption today. If rates rise, the swaption pays out, offsetting the higher borrowing cost. If rates fall, the treasurer lets the option expire and borrows at the lower market rate.

Receiver Swaption — Hedging Falling Rates

A receiver swaption is used when an investor or lender wants to protect against rates falling. For example, a pension fund receiving fixed income might buy a receiver swaption to ensure they can reinvest at an acceptable rate. If rates drop, the swaption compensates for the lower reinvestment yield.

Payoff at Expiry

At expiry, the swaption's intrinsic value depends on the difference between the strike rate and the prevailing forward swap rate:

  • Payer swaption payoff ≈ max(Forward Rate − Strike, 0) × Annuity × Notional
  • Receiver swaption payoff ≈ max(Strike − Forward Rate, 0) × Annuity × Notional

Before expiry, the option also has time value — driven by volatility and time remaining — which is why the premium (NPV) is typically higher than the intrinsic value alone.

When Are Swaptions Used?

Swaptions are widely used across corporate treasury, project finance, and portfolio management. Common use cases include:

  • Pre-hedging future debt issuance — A borrower buys a payer swaption to lock in a maximum rate for a loan that hasn't closed yet. This is common in project finance where there's a gap between mandate and financial close.
  • Rate lock protection — Before a bond issuance or refinancing, issuers use swaptions to cap their worst-case cost of funds while retaining upside if rates fall.
  • Portfolio insurance — Fixed-income portfolio managers use receiver swaptions to protect against falling yields eroding portfolio income.
  • Volatility trading — Traders express views on rate volatility using swaption straddles (buying both a payer and receiver at the same strike) without taking a directional rate view.

The swaption market is one of the largest options markets globally. According to the Bank for International Settlements, interest rate options (including swaptions) had a notional outstanding of over $45 trillion as of mid-2024.

Swaption Pricing Explained

European swaptions are most commonly priced using the Bachelier (normal) model, which has largely replaced the Black (lognormal) model in the post-LIBOR era. The key advantage of the Bachelier model is that it works correctly when rates are low or negative — something the Black model cannot handle due to its reliance on the logarithm of rates.

The Bachelier model prices a payer swaption as:

NPV = Notional × Annuity × [(F − K) × Φ(d) + σ√T × φ(d)]

Where:

  • F = Forward swap rate (the at-the-money rate for the underlying swap)
  • K = Strike rate
  • σ = Normal (Bachelier) volatility
  • T = Time to expiry in years
  • Φ(d) = Cumulative normal distribution
  • φ(d) = Standard normal density
  • d = (F − K) / (σ × √T)

The key inputs that drive a swaption's price are the forward rate (where the market expects the swap rate to be at expiry), the strike (what rate you're locking in), the normal volatility (how much the market expects rates to move), and time to expiry (more time = more uncertainty = higher premium).

Normal volatility is typically quoted in basis points (e.g., 115 bps means the market implies roughly ±1.15% annual rate moves). This differs from Black (lognormal) volatility, which is quoted as a percentage of the rate level.

Swaption Pricing Example

Let's walk through pricing a real swaption using the SOFR curve.

Example 1: ATM Payer Swaption (2Y×5Y SOFR)

We'll price a 2-year into 5-year at-the-money payer swaption on SOFR with a $10 million notional. "At-the-money" means the strike equals the current forward swap rate — so we're not specifying a strike and letting the market set it.

import requests

API_KEY = "your_api_key_here"
BASE_URL = "https://api.bluegamma.io/v1"
headers = {
   "x-api-key": API_KEY,
   "Content-Type": "application/json"
}

response = requests.post(
   f"{BASE_URL}/swaption_price",
   headers=headers,
   json={
       "index": "SOFR",
       "start_date": "2Y",
       "maturity_date": "5Y",
       "notional": 10000000
   }
)

print(response.json())

Response:

{
 "index": "SOFR",
 "currency": "USD",
 "swaption_type": "payer",
 "start_date": "2028-02-23",
 "maturity_date": "2033-02-23",
 "exercise_date": "2028-02-23",
 "forward_rate": 3.57,
 "strike_rate": 3.57,
 "volatility": 115.0,
 "npv": 206000.00,
 "delta": 0.5,
 "vega": 6100.00
}

Here's what each field tells us:

FieldValueWhat It Means
forward_rate3.57%The market-implied 5Y swap rate starting in 2 years
strike_rate3.57%Equal to forward (ATM) since we didn't specify a strike
volatility115.0 bpsNormal (Bachelier) vol — implies ~1.15% annual rate moves
npv$206,000The option premium — what you'd pay for this swaption
delta0.50Exactly 0.5 for an ATM payer (50% implied exercise probability)
vega$6,100NPV change per 1bp move in volatility

The premium of $206,000 represents about 2.06% of notional — the cost of protecting against rates rising above 3.57% over the next 2 years.

Example 2: OTM Receiver Swaption

Now let's price a receiver swaption with a strike of 3.0% — below the forward rate of 3.57%, making it out-of-the-money.

response = requests.post(
   f"{BASE_URL}/swaption_price",
   headers=headers,
   json={
       "index": "SOFR",
       "start_date": "2Y",
       "maturity_date": "5Y",
       "strike_rate": 3.0,
       "swaption_type": "receiver",
       "notional": 10000000
   }
)

Response:

{
 "forward_rate": 3.57,
 "strike_rate": 3.0,
 "volatility": 115.0,
 "npv": 85000.00,
 "delta": -0.30,
 "vega": 5200.00
}

The NPV dropped from $206,000 to $85,000 because the option is out-of-the-money — the strike (3.0%) is below the forward rate (3.57%), so the receiver swaption is less likely to be exercised. The delta of −0.30 implies roughly a 30% probability of exercise.

How Swaption Values Change Over Time

A swaption's value doesn't stay static — it moves daily as the yield curve and volatility environment shift. The chart below shows how a 2Y×5Y ATM SOFR payer swaption (with $10M notional) was valued weekly over the past six months:

Two things drive these movements:

  1. Forward rate changes — When the 5-year forward swap rate rises, the underlying swap becomes more valuable, pushing the ATM swaption premium higher.
  2. Volatility regime — When market uncertainty increases (normal vol rises), the option premium increases because there's a wider range of possible rate outcomes at expiry.

This kind of historical analysis is useful for P&L attribution (understanding what drove your swaption's value change), back-testing hedging strategies, and timing swaption purchases relative to volatility cycles.

Understanding Swaption Greeks: Delta and Vega

When trading or risk-managing swaptions, two Greeks matter most: delta and vega.

Delta — Rate Sensitivity

Delta measures how much the swaption's NPV changes when the underlying forward rate moves by a small amount.

  • Payer swaption delta ranges from 0 (deep out-of-the-money) to 1 (deep in-the-money). ATM = 0.5.
  • Receiver swaption delta ranges from −1 (deep ITM) to 0 (deep OTM). ATM = −0.5.

In practice, delta tells you two things: approximately how much of the underlying swap you need to trade to hedge (an ATM payer with delta 0.5 needs ~50% of notional in swaps), and a rough proxy for the implied probability of exercise.

Vega — Volatility Sensitivity

Vega measures the NPV change per 1 basis point shift in normal volatility. A vega of $6,100 means that if implied vol rises by 1bp, the swaption's value increases by approximately $6,100.

Vega is highest for at-the-money swaptions and decreases as the option moves deeper in or out of the money. It also increases with time to expiry — longer-dated swaptions have more vega because there's more time for volatility to play out.

GreekWhat It MeasuresATM Payer Value (2Y×5Y, $10M)Practical Use
DeltaRate sensitivity0.50Hedge ratio, exercise probability
VegaVol sensitivity per 1bp~$6,100Vol risk management, P&L attribution

Pricing Swaptions with the BlueGamma API

The examples above were generated using BlueGamma's /swaption_price endpoint, which prices European payer and receiver swaptions using a Bachelier model with live yield curves and volatility data.

The endpoint supports 20+ indices including SOFR, SONIA, EURIBOR, SARON, and more — so you can price swaptions across major currencies in a single API call. Inputs are straightforward: specify the index, exercise date, swap maturity, and optionally a strike rate and notional.

POST https://api.bluegamma.io/v1/swaption_price
Content-Type: application/json
x-api-key: your_api_key

{
 "index": "SOFR",
 "start_date": "2Y",
 "maturity_date": "5Y",
 "swaption_type": "payer"
}

The API returns the forward rate, strike, normal volatility (in basis points), NPV, delta, and vega — everything you need for pricing, hedging, and risk reporting.

For the full request/response schema, see the interactive API reference. For a step-by-step walkthrough with more examples, see our API guide for swaption pricing. To get started, book a call with our team or email [email protected].