---
title: "List your tournament calendar"
method: GET
path: "/user/tournaments/calendar"
tags: ["My Tournaments"]
---

# List your tournament calendar

`GET /user/tournaments/calendar`

Returns registration-deadline, check-in-opening, and tournament-start milestones for tournaments the API key owner's teams are entered in. Cancelled tournaments are omitted, and scheduled tournament matches are not included here - they surface through the match endpoints. Defaults to the next 30 days when no window is given. Requires tournaments.tournament_public:read.

## Query parameters

- `rangeStart` string — Window start, ISO 8601. Defaults to the time of the request.
- `rangeEnd` string — Window end, ISO 8601. Defaults to 30 days after `rangeStart`.

## Response `200`

Tournament milestones in the applied window, ascending by time.

- TournamentCalendarResponse — Tournament milestones for the key owner's teams.
  - `events` TournamentCalendarEvent[], required — Milestones in the requested window, ascending by time.
    - `tournamentId` string, required — Tournament ID.
    - `slug` string, required — URL-friendly tournament identifier.
    - `name` string, required — Tournament display name.
    - `kind` 'registration' | 'checkin' | 'start', required — registration = registration deadline, checkin = check-in opens, start = tournament start.
    - `at` number, required — Milestone time (epoch milliseconds).
  - `count` integer, required — Number of milestones returned.
  - `rangeStart` string, required — Applied window start (ISO 8601).
  - `rangeEnd` string, required — Applied window end (ISO 8601).
  - `timestamp` string, required — Response generation time (ISO 8601).

## Other responses

- `400` — Bad request (invalid body, cursor, limit, or date).
- `401` — Missing or invalid API key.
- `403` — API key lacks the required permission.
- `429` — Rate limited.
- `500` — Internal server error.

---

[API](https://skmtc.net/teambattles/apis/teambattles-api.md) · [All operations](https://skmtc.net/teambattles/apis/teambattles-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/teambattles/teambattles-api/revisions/2ffe8fb53b7d/schema)
