Skip to main content

Documentation Index

Fetch the complete documentation index at: https://edgefinder.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

The standings command returns the current league standings for the NFL or NBA. Results reflect the live season standings as of the time you run the command. Use --json to pipe the output into other tools or store it for automated workflows.

Syntax

edgefinder standings <nfl|nba> [--json]

Arguments

path.league
string
required
The league to retrieve standings for. Must be nfl or nba.

Options

query.--json
boolean
Output raw JSON. The standings command always outputs JSON; this flag is accepted for consistency with other commands.

Examples

edgefinder standings nfl

Sample output

{
  "season": 2025,
  "week": 17,
  "conferences": [
    {
      "name": "AFC",
      "divisions": [
        {
          "name": "AFC West",
          "teams": [
            {
              "name": "Kansas City Chiefs",
              "wins": 13,
              "losses": 3,
              "ties": 0,
              "pct": 0.813,
              "divisionRecord": "4-2",
              "conferenceRecord": "9-3",
              "pointsFor": 412,
              "pointsAgainst": 278,
              "streak": "W3"
            }
          ]
        }
      ]
    }
  ]
}
Use standings alongside ask to get AI context on what the standings mean for betting:
edgefinder standings nfl | jq '.conferences[0].divisions[0].teams[0]'
edgefinder ask "Which AFC West team has the best playoff odds right now?"
Only nfl and nba are supported. MLB standings are not available from this command.