Sleeper Matchups API

The Matchups API from Sleeper — 1 operation(s) for matchups.

Operations 1

GET /league/{league_id}/matchups/{week} Get all matchups in a league for a week #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sleeper-matchups-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sleeper-matchups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sleeper Drafts Matchups API
  version: '1.0'
  description: The Sleeper API is a read-only HTTP API that exposes public fantasy sports data — users, leagues, rosters, matchups, transactions, drafts, draft picks, traded picks, and players. It is free to use and requires no API token, because no content can be modified through it. All endpoints are GET requests that return JSON.
  contact:
    name: Sleeper API Docs
    url: https://docs.sleeper.com/
  x-provenance:
    generated: '2026-07-21'
    method: generated
    source: https://docs.sleeper.com/
    note: Authored by the API Evangelist enrichment pipeline from the operations documented at docs.sleeper.com. Sleeper does not publish an OpenAPI; every path, method, and parameter here is transcribed from the public docs.
servers:
- url: https://api.sleeper.app/v1
  description: Sleeper read-only API (v1)
tags:
- name: Matchups
paths:
  /league/{league_id}/matchups/{week}:
    get:
      operationId: getLeagueMatchups
      summary: Get all matchups in a league for a week
      tags:
      - Matchups
      parameters:
      - name: league_id
        in: path
        required: true
        schema:
          type: string
      - name: week
        in: path
        required: true
        schema:
          type: integer
          example: 1
      responses:
        '200':
          description: Array of matchup objects.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Matchup'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  responses:
    TooManyRequests:
      description: Rate limit exceeded — stay under 1000 API calls per minute to avoid IP blocks.
    NotFound:
      description: The requested resource was not found.
  schemas:
    Matchup:
      type: object
      properties:
        roster_id:
          type: integer
          description: References a Roster by roster_id
        matchup_id:
          type: integer
          description: Rosters sharing a matchup_id play each other
        points:
          type: number
        players:
          type: array
          items:
            type: string
        starters:
          type: array
          items:
            type: string
        players_points:
          type: object
        custom_points:
          type: number
          nullable: true