# PLL Odds API

The Odds API covers PLL (Premier Lacrosse League) odds for live and upcoming games in a simple JSON API.

Not a developer? Current PLL odds can also be accessed in Excel or Google Sheets. For website owners, the odds widget brings bookmaker odds into websites with a simple HTML tag.

# Features

  • PLL odds are covered for live and upcoming games.

  • Featured markets, including moneyline, spreads, totals are covered for several bookmakers. See the full list of bookmakers.

  • Odds are refreshed at regular intervals. More information on update intervals can be found here.

  • Current odds data are available on all usage plans, including the free usage plan.

  • Historical PLL odds data is available from May 2024 on paid usage plans. More information on historical odds data can be found here.

  • The API response includes deep links to bookmaker websites.

# Querying PLL Odds

Featured markets (moneyline, spreads and totals) can be queried using the odds endpoint.

Parameters

To query current PLL odds for featured markets, the following parameters need to be provided:

  • sport   In this case lacrosse_pll
  • regions   Regions of bookmakers to return, for example us
  • markets   For example, h2h for moneyline, spreads and totals
  • apiKey   Get a free API key

See the documentation for more options

Example API Request

https://api.the-odds-api.com/v4/sports/lacrosse_pll/odds?regions=us&markets=h2h,spreads,totals&oddsFormat=american&apiKey=YOUR_API_KEY

Example API Response

The API will return live and upcoming PLL games, including start times, home and away teams, and odds from bookmakers for the specified regions and markets.

[{
  "id": "e780b78f47cca2f7780cc7bef1000e17",
  "sport_key": "lacrosse_pll",
  "sport_title": "PLL",
  "commence_time": "2024-06-01T17:00:00Z",
  "home_team": "Philadelphia Waterdogs",
  "away_team": "Utah Archers",
  "bookmakers": [
    {
      "key": "draftkings",
      "title": "DraftKings",
      "last_update": "2024-06-01T15:09:45Z",
      "markets": [
        {
          "key": "h2h",
          "last_update": "2024-06-01T15:09:45Z",
          "outcomes": [
            {"name": "Philadelphia Waterdogs", "price": -115},
            {"name": "Utah Archers", "price": -115}
          ]
        },
        {
          "key": "spreads",
          "last_update": "2024-06-01T15:09:45Z",
          "outcomes": [
            {"name": "Philadelphia Waterdogs", "price": 124, "point": -1.5},
            {"name": "Utah Archers", "price": -160, "point": 1.5}
          ]
        },
        {
          "key": "totals",
          "last_update": "2024-06-01T15:09:45Z",
          "outcomes": [
            {"name": "Over", "price": -115, "point": 26.0},
            {"name": "Under", "price": -115, "point": 26.0}
          ]
        }
      ]
    },
    ...

The usage cost of the API call in this example is

usage cost = [number of markets] x [number of regions] = 3 x 1 = 3 credits

See the API documentation for details.

# Other Sports

See the full list of sports covered by The Odds API.

# Stay Updated

Follow us on X.com or Bluesky to stay updated on new sports, bookmakers, markets and features.