---
title: "Final Results API"
method: GET
path: "/v2/tournaments/{tournament_id}/results"
---

# Final Results API

`GET /v2/tournaments/{tournament_id}/results`

Returns the final ranked results after a tournament has ended, capped at the top 10,000 entries. Rate limit: 24 requests per 24 hours, per tournament.

## Path parameters

- `tournament_id` string, required

## Response `200`

Final ranked results for the tournament.

- object
  - `success` boolean
  - `data` object
    - `results` object
      - `total_players` integer — Number of players with at least one valid score in the tournament.
    - `entries` TournamentLeaderboardEntry[] — Final ranked entries, capped at the top 10,000.
      - `rank` integer — 1-indexed rank of the player.
      - `puid` string — The player's unique identifier — the same `puid` value appended to the game URL when sending that user to the tournament.
      - `score` integer — The player's best valid score in the tournament.

## Other responses

- `401` — Unauthorized.
- `403` — Forbidden.
- `404` — Not Found.
- `409` — Conflict. The tournament has not ended, or results are still being processed.
- `429` — Too Many Requests. Rate limit: 24 requests per 24 hours, per tournament.

---

[API](https://skmtc.net/gamezop/apis/astrozop-apis.md) · [All operations](https://skmtc.net/gamezop/apis/astrozop-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gamezop/astrozop-apis/revisions/485db86a5145/schema)
