---
title: "Retrieve rounds"
method: GET
path: "/round"
tags: ["Round"]
---

# Retrieve rounds

`GET /round`

Retrieves rounds.

## Query parameters

- `type` 'entry' | 'judge' | 'feedback'
- `form` string
- `season` string
- `slug` string
- `order` 'created' | 'end_date' | 'name' | 'start_date' | 'type' | 'updated'
- `dir` 'asc' | 'desc'
- `trashed` 'only' | 'all' | 'none'
- `page` string
- `per_page` string

## Headers

- `Accept` 'application/vnd.Creative Force.v2.3+json' | 'application/vnd.Creative Force.v2.3+xml', required
- `x-api-language` string[]

## Response `200`

Rounds retrieved.

- RoundList — Pagination envelope returned by every list endpoint. Wraps the result set with positional fields (`current_page`, `from`, `to`, `total`) and navigation URLs (`first_page_url`, `last_page_url`, `next_page_url`, `prev_page_url`) for traversing the full list. The records themselves are returned in a sibling `data` array supplied by the wrapping schema.
  - `current_page` integer — Number of the page returned by this response. The first page is `1`.
  - `first_page_url` string, uri — URL of the first page in the result set.
  - `from` integer — Position of the first record on this page within the full result set. The first record is at position `1`.
  - `last_page` integer — Number of the last page. Equals the total number of pages.
  - `last_page_url` string, uri — URL of the last page in the result set.
  - `next_page_url` string — URL of the next page in the result set. Empty string when the current page is the last page.
  - `path` string, uri — Canonical URL of the endpoint, without query parameters.
  - `per_page` integer — Maximum number of records returned per page.
  - `prev_page_url` string — URL of the previous page in the result set. Empty string when the current page is the first page.
  - `to` integer — Position of the last record on this page within the full result set.
  - `total` integer — Total number of records across all pages.
  - `data` Round[]
    - `chapters` object[] — Chapters associated with the round.
      - `slug` string — Short URL-safe identifier for the chapter.
      - `link` string, uri — Canonical URL for the chapter resource.
      - `name` object — Map keyed by locale code (for example, `en_GB` or `fr_FR`). Keys are drawn from the languages enabled on the account. Values are the translated string.
    - `created` string, date-time — Date and time the round was created, in ISO 8601 format.
    - `end_date` string, nullable — Date and time the round closes, in `YYYY-MM-DD HH:MM:SS` format. This value carries no timezone offset. `null` when no close date is set.
    - `form` string — Slug of the form associated with the round.
    - `name` object — Map keyed by locale code (for example, `en_GB` or `fr_FR`). Keys are drawn from the languages enabled on the account. Values are the translated string.
    - `season` object — Season the round belongs to.
      - `slug` string — Short URL-safe identifier for the season.
      - `link` string, uri — Canonical URL for the season resource.
      - `name` object — Map keyed by locale code (for example, `en_GB` or `fr_FR`). Keys are drawn from the languages enabled on the account. Values are the translated string.
    - `slug` string — Short URL-safe identifier for the round.
    - `start_date` string, nullable — Date and time the round opens, in `YYYY-MM-DD HH:MM:SS` format. This value carries no timezone offset. `null` when no open date is set.
    - `type` 'entry' | 'judge' | 'feedback' — Type of the round.
    - `updated` string, date-time — Date and time the round was last updated, in ISO 8601 format.

## Other responses

- `400` — Request was rejected before the endpoint could process it. Common causes: invalid `Accept` header, unsupported `x-api-language` code, empty request body on `POST` / `PUT`, or invalid JSON in the request body.
- `401` — Missing `x-api-key` header.
- `403` — Authenticated request denied. Common causes: invalid or unknown API key, suspended account, or `api` feature not enabled for the account.
- `429` — Rate limit of 60 requests per minute exceeded.
- `503` — Service is temporarily unavailable due to regional maintenance.

---

[API](https://skmtc.dev/tectonic/apis/award-force-api.md) · [All operations](https://skmtc.dev/tectonic/apis/award-force-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/tectonic/award-force-api/revisions/b70a2ea056c3/schema)
