Round

Retrieve rounds

Retrieves rounds.

get/round

Query parameters

type'entry' | 'judge' | 'feedback'

Filter by round type.

formstring

Filter by form slug.

Use the value all to include results from every form rather than a single form.

seasonstring

Filter by season slug. Use all to show all seasons.

slugstring

Filter to a single round by slug. Returns at most one item.

order'created' | 'end_date' | 'name' | 'start_date' | 'type' | 'updated'

Sort by a supported round field.

dir'asc' | 'desc'

Sort in ascending or descending order.

trashed'only' | 'all' | 'none'

Filter by soft-deletion mode.

  • only - Show only soft-deleted resources.
  • all - Include soft-deleted resources alongside live ones.
  • none - Exclude soft-deleted resources.
pagestring

Specify the page number to return.

per_pagestring

Limit the number of items returned to between 1 and 100.

Headers

Accept'application/vnd.Creative Force.v2.3+json' | 'application/vnd.Creative Force.v2.3+xml' required

Defines the response type.

x-api-languagestring[]

Defines the languages included in the response. If omitted, the account default language is used.

Value all overrides any other values present.

Response

Rounds retrieved.

current_pageinteger

Number of the page returned by this response. The first page is 1.

first_page_urlstring uri

URL of the first page in the result set.

frominteger

Position of the first record on this page within the full result set. The first record is at position 1.

last_pageinteger

Number of the last page. Equals the total number of pages.

last_page_urlstring uri

URL of the last page in the result set.

next_page_urlstring

URL of the next page in the result set.

Empty string when the current page is the last page.

pathstring uri

Canonical URL of the endpoint, without query parameters.

per_pageinteger

Maximum number of records returned per page.

prev_page_urlstring

URL of the previous page in the result set.

Empty string when the current page is the first page.

tointeger

Position of the last record on this page within the full result set.

totalinteger

Total number of records across all pages.

Example response

{
  "current_page": 1,
  "data": [
    {
      "chapters": [
        {
          "slug": "AbCdEfGh",
          "link": "https://api.eu.staging.cr4ce.com/chapter/AbCdEfGh",
          "name": {
            "en_GB": "lecht"
          }
        },
        {
          "slug": "CdEfGhIj",
          "link": "https://api.eu.staging.cr4ce.com/chapter/CdEfGhIj",
          "name": {
            "en_GB": "Glencoe"
          }
        }
      ],
      "created": "2026-06-24T13:57:52Z",
      "end_date": null,
      "form": "EfGhIjKl",
      "name": {
        "en_GB": "form 15"
      },
      "season": {
        "slug": "GhIjKlMn",
        "link": "https://api.eu.staging.cr4ce.com/season/GhIjKlMn",
        "name": {
          "en_GB": "2026"
        }
      },
      "slug": "IjKlMnOp",
      "start_date": null,
      "type": "entry",
      "updated": "2026-06-24T13:57:52Z"
    },
    {
      "chapters": [],
      "created": "2025-02-13T11:41:26Z",
      "end_date": "2026-04-22 07:43:00",
      "form": "KlMnOpQr",
      "name": {
        "en_GB": "Cycling grants judging"
      },
      "season": {
        "slug": "GhIjKlMn",
        "link": "https://api.eu.staging.cr4ce.com/season/GhIjKlMn",
        "name": {
          "en_GB": "2026"
        }
      },
      "slug": "MnOpQrSt",
      "start_date": "2025-03-07 08:43:00",
      "type": "judge",
      "updated": "2026-04-08T15:24:34Z"
    }
  ],
  "first_page_url": "https://api.eu.staging.cr4ce.com/round?per_page=100&page=1",
  "from": 1,
  "last_page": 1,
  "last_page_url": "https://api.eu.staging.cr4ce.com/round?per_page=100&page=1",
  "next_page_url": "",
  "path": "https://api.eu.staging.cr4ce.com/round",
  "per_page": 100,
  "prev_page_url": "",
  "to": 29,
  "total": 29
}

Changes