Odds API by market / WNBA

WNBA Points + Assists API

Live player_points_assists odds across every book that posts it, in one REST call — and, unlike any other odds API, every one of those outcomes settled against the official result once play ends.

No credit card. 1,000 requests / day on the free tier.

What WNBA points + assists is

Points and assists summed into a single Over/Under line.

How we settle it. Graded against the sum of the two box-score columns.

3
books quoting it on the next event
7/8
of the next WNBA events carry it right now
8,200
outcomes settled in the last 21 days

Every number on this page is measured against the live API, never copied from a spec sheet. Last measured 11 September 2026.

Books posting WNBA points + assists

Measured live, not listed from a spec. Coverage moves — a book that has not put its board up yet will not appear until it does, which is exactly what this list is for.

FanaticsFanDuel1xBet

Line shopping across all of them is one request — every book arrives in the same bookmakers array, not one call per book. Add ?bookmakers= to narrow it, or use /best-line for the best price per line already ranked.

Recently settled WNBA points + assists outcomes

These are real rows out of the API, not an illustration. Each one was a price on a board before the event and carries the actual figure it was graded against afterwards. No other odds API returns that last column — they stop at the price.

8,200 points + assists outcomes settled in the last 21 days across 10 books. The 12 most recent:

PlayerBetActualResult
Kelsey Plum (LAS)Over 26.547.0won
Kelsey Plum (LAS)Under 26.547.0lost
Kelsey PlumUnder 25.547.0lost
Kelsey PlumOver 25.547.0won
Monique Akoa Makani (PHO)Over 13.514.0won
Natasha MackOver 14.55.0lost
Natasha MackUnder 14.55.0won
Chennedy CarterOver 13.521.0won
Awa Fam ThiamOver 14.517.0won
Awa Fam ThiamUnder 14.517.0lost
Sarah Barker5+ Points + Assists12.0won
Sarah Barker10+ Points + Assists12.0won

Over/Under split, last 21 days

The Over won 45.8% of 2742 decided points + assists lines (1255 over, 1487 under, 3 push). Computed from the settled rows themselves, scoped to WNBA only.

Read off 2,869 Over legs out of 8,200 settled outcomes on this market. The rest are Unders and milestone legs (“1+”, “2+”) that some books price here too, and a threshold rung is not an Over.

A few days of one market describes a few days — it is not an edge. Pull the full history through /exports/resolved-props for a sample worth modelling on.

Live response

Captured from the real endpoint on Connecticut Sun @ Atlanta Dream, trimmed to one book and three outcomes so the shape stays readable. The full response carries every book and every line, alternates included, in the same call.

{
  "home_team_key": "dream",
  "away_team_key": "sun_wnba",
  "home_team_id": "wnba:1611661330",
  "away_team_id": "wnba:1611661323",
  "id": "187960",
  "sport_key": "basketball_wnba",
  "home_team": "Atlanta Dream",
  "away_team": "Connecticut Sun",
  "commence_time": "2026-09-17T23:30:00Z",
  "live": false,
  "last_update": "2026-09-11T13:43:20.465593Z",
  "merged_from_event_ids": null,
  "bookmakers": [
    {
      "key": "fanatics",
      "title": "Fanatics",
      "last_update": "2026-09-11T13:43:03.612878Z",
      "link": null,
      "app_link": null,
      "pregame_only": false,
      "book_event_id": null,
      "markets": [
        {
          "key": "player_points_assists",
          "description": "Angel Reese - Points + Assists",
          "last_update": "2026-09-11T13:43:03.612878Z",
          "period": null,
          "suspended_at": null,
          "team": null,
          "outcomes": [
            {
              "name": "13+ Points + Assists",
              "description": "Angel Reese",
              "price": -525,
              "point": null,
              "book_updated_at": null,
              "book_version": null,
              "payout_multiplier": null,
              "dfs_odds_type": null,
              "last_change_at": "2026-09-09T10:45:06.803415Z",
              "last_seen_at": "2026-09-11T13:43:03.612878Z",
              "liquidity": null,
              "liquidity_updated_at": null,
              "line_gap": null,
              "book_outcome_id": null,
              "outcome_id": null,
              "player_id": "wnba:1642291"
            },
            {
              "name": "15+ Points + Assists",
              "description": "Angel Reese",
              "price": -300,
              "point": null,
              "book_updated_at": null,
              "book_version": null,
              "payout_multiplier": null,
              "dfs_odds_type": null,
              "last_change_at": "2026-09-02T14:52:07.939114Z",
              "last_seen_at": "2026-09-11T13:43:03.612878Z",
              "liquidity": null,
              "liquidity_updated_at": null,
              "line_gap": null,
              "book_outcome_id": null,
              "outcome_id": null,
              "player_id": "wnba:1642291"
            },
            {
              "name": "17+ Points + Assists",
              "description": "Angel Reese",
              "price": -165,
              "point": null,
              "book_updated_at": null,
              "book_version": null,
              "payout_multiplier": null,
              "dfs_odds_type": null,
              "last_change_at": "2026-09-02T14:52:07.939114Z",
              "last_seen_at": "2026-09-11T13:43:03.612878Z",
              "liquidity": null,
              "liquidity_updated_at": null,
              "line_gap": null,
              "book_outcome_id": null,
              "outcome_id": null,
              "player_id": "wnba:1642291"
            }
          ]
        }
      ]
    }
  ]
}

The response shape is the-odds-api compatible — events, bookmakers, markets, outcomes — so migrating is usually a base URL change.

Try it

1. List WNBA events to get an event id:

curl "https://api.prop-line.com/v1/sports/basketball_wnba/events?apiKey=YOUR_API_KEY"

2. Pull points + assists for one game across every book — this exact URL works right now:

curl "https://api.prop-line.com/v1/sports/basketball_wnba/events/187960/odds?apiKey=YOUR_API_KEY&markets=player_points_assists"

3. After the game, get the graded outcomes with the actual stat:

curl "https://api.prop-line.com/v1/sports/basketball_wnba/events/187960/results?apiKey=YOUR_API_KEY"

Steps 1 and 2 run on the free tier. Step 3 — prop resolution — starts on Hobby at $9/mo. See pricing.

Get your free WNBA odds API key

1,000 requests / day. No credit card. The same key covers every sport and every market — not just this one.

Free tier includes 1,000 requests/day. Upgrade anytime.