v50

latestOpenAPI 3.1.0Creative Force Client Subscription Termsraw.githubusercontent.com2026-07-137852387.4 KB
Rounds

Retrieve a round

Retrieves the round identified by the specified slug.

get/round/{round_slug}

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 non are provided, the account default language is returned.

Value all overrides any other values present.

You can request multiple languages using a comma-separated string of languages.

The selected language must be supported by your account or a 400 error is returned.

Response

Round retrieved.

createdstring date-time

Date and time the round was created, in ISO 8601 format.

end_datestring 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.

formstring

Slug of the form associated with the round.

nameobject

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.

slugstring

Short URL-safe identifier for the round.

start_datestring 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.

updatedstring date-time

Date and time the round was last updated, in ISO 8601 format.

Example response

{
  "chapters": [
    {
      "slug": "CdEfGhIj",
      "link": "https://api.au.cr4ce.com/chapter/CdEfGhIj",
      "name": {
        "en_GB": "Open"
      }
    }
  ],
  "created": "2026-01-15T09:00:00Z",
  "end_date": "2026-03-31 23:59:59",
  "form": "AbCdEfGh",
  "name": {
    "en_GB": "Entry round"
  },
  "season": {
    "slug": "QrStUvWx",
    "link": "https://api.au.cr4ce.com/season/QrStUvWx",
    "name": {
      "en_GB": "2025"
    }
  },
  "slug": "EfGhIjKl",
  "start_date": "2026-01-01 00:00:00",
  "type": "entry",
  "updated": "2026-01-15T09:00:00Z"
}