> ## Documentation Index
> Fetch the complete documentation index at: https://padelapi.org/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Show Season

> Endpoint to retrieve detailed information about a specific season including start and end dates, tournaments count, and status.



## OpenAPI

````yaml https://padelapi.org/docs/api.json get /seasons/{season}
openapi: 3.1.0
info:
  title: Padel API – API Reference
  version: '1.0'
  description: padelapi.org
servers:
  - url: https://padelapi.org/api
security:
  - http: []
paths:
  /seasons/{season}:
    get:
      tags:
        - Season
      summary: Show Season
      description: >-
        Endpoint to retrieve detailed information about a specific season
        including start and end dates, tournaments count, and status.
      operationId: getSeason
      parameters:
        - name: season
          in: path
          required: true
          description: The season ID
          schema:
            type: integer
      responses:
        '200':
          description: '`SeasonResource`'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SeasonResource'
        '401':
          $ref: '#/components/responses/AuthenticationException'
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
components:
  schemas:
    SeasonResource:
      type: object
      properties:
        id:
          type: integer
          description: >-
            Unique identifier of the season. Stable across requests, use it to
            reference the season from your own data.
        self:
          type: string
          description: Path to this season's endpoint, relative to `https://padelapi.org`.
        name:
          type: string
          description: >-
            Display name of the season, combining the organizing body and the
            year (e.g. `Premier Padel 2026`).
        url:
          type: string
          description: Public web page with the full calendar for the season.
        tournaments_count:
          type: integer
          description: >-
            Number of tournaments in the season. Matches the number of results
            returned by `connections.tournaments`.
        status:
          type: string
          description: >-
            Current state of the season, derived from its calendar. See the
            [statuses
            reference](https://padelapi.org/docs/statuses#season-statuses) for
            the full list.
          enum:
            - upcoming
            - active
            - finished
        start_date:
          type: string
          description: Start date of the first tournament of the season, as `YYYY-MM-DD`.
        end_date:
          type: string
          description: >-
            End date of the last tournament of the season, as `YYYY-MM-DD`. A
            season can run across calendar years, so this date may fall outside
            `year`.
        year:
          type: string
          description: >-
            Calendar year the season belongs to. Several seasons can share the
            same year when more than one circuit is running.
        connections:
          type: object
          description: Related endpoints for this season.
          properties:
            tournaments:
              type: string
              description: Tournaments played in this season.
          required:
            - tournaments
      required:
        - id
        - self
        - name
        - url
        - tournaments_count
        - status
        - start_date
        - end_date
        - year
        - connections
      title: SeasonResource
  responses:
    AuthenticationException:
      description: Unauthenticated
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
    ModelNotFoundException:
      description: Not found
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
  securitySchemes:
    http:
      type: http
      scheme: bearer

````