Skip to main content

Team

Represents a team resource.

idTeamID (string)

Unique identifier for the team.

nameName (string)

Name of the team.

Possible values: non-empty and <= 100 characters

short_nameName (string)

Short name of the team.

Possible values: non-empty and <= 100 characters

codeTeamCode

3-letter code identifying the team.

Possible values: >= 3 characters and <= 3 characters, Value must match regular expression ^[A-Z]{3}$

image_urlurinullable

URL for an image of the team logo.

citystring | nullnullable

City where the team are based.

countryCountryCode (string)

Country where the team are based.

Possible values: >= 2 characters and <= 2 characters, Value must match regular expression ^[A-Z]{2}$

statestring | nullnullable

State, province, or region where the team are based.

founded_atdate-time

Date when the team was founded.

venue object

Information about the venue where the team plays.

idVenueID (string)

Unique identifier for the venue.

nameName (string)

Name of the venue.

Possible values: non-empty and <= 100 characters

colors object

Colors associated with the team in hex color code format.

primaryColor (string)

Primary color for the team.

Possible values: Value must match regular expression ^#([A-Fa-f0-9]{6})$

secondaryColor (string)

Secondary color for the team.

Possible values: Value must match regular expression ^#([A-Fa-f0-9]{6})$

tertiaryColor (string)

Tertiary color for the team.

Possible values: Value must match regular expression ^#([A-Fa-f0-9]{6})$

primary_rival_team_idTeamID (string)

Unique identifier for the team.

rival_teams object[]

List of rival teams for the team.

  • Array [
  • idTeamID (string)

    Unique identifier for the team.

    nameName (string)

    Name of the team.

    Possible values: non-empty and <= 100 characters

    codeTeamCode

    3-letter code identifying the team.

    Possible values: >= 3 characters and <= 3 characters, Value must match regular expression ^[A-Z]{3}$

    image_urlurinullable

    URL for an image of the team.

  • ]
  • captain object

    Represents a compact player resource.

    idPlayerID (string)

    Unique identifier for the player.

    first_nameName (string)

    First name of the player.

    Possible values: non-empty and <= 100 characters

    last_nameName (string)

    Last name of the player.

    Possible values: non-empty and <= 100 characters

    preferred_namestring | nullnullable

    Preferred name of the player.

    position_codePlayerPositionCode (string)

    Code for the position that the player plays.

    Possible values: [C, LW, RW, LD, RD, G]

    nationalityCountryCode (string)

    Country representing the nationality of the player.

    Possible values: >= 2 characters and <= 2 characters, Value must match regular expression ^[A-Z]{2}$

    staff object[]

    List of related staff members for the team.

  • Array [
  • idPlayerID (string)

    Unique identifier for the player.

    first_nameName (string)

    First name of the player.

    Possible values: non-empty and <= 100 characters

    last_nameName (string)

    Last name of the player.

    Possible values: non-empty and <= 100 characters

    preferred_namestring | nullnullable

    Preferred name of the player.

    position_codePlayerPositionCode (string)

    Code for the position that the player plays.

    Possible values: [C, LW, RW, LD, RD, G]

    nationalityCountryCode (string)

    Country representing the nationality of the player.

    Possible values: >= 2 characters and <= 2 characters, Value must match regular expression ^[A-Z]{2}$

  • ]
  • links object[]

    List of related links for the team.

  • Array [
  • kindstring

    Kind of link.

    Possible values: [bluesky, club, facebook, instagram, linkedin, other, personal, prospects, threads, tiktok, twitter, wikipedia, youtube]

    urluri

    URL for the link.

  • ]
  • created_atdate-time

    Date and time when the resource was created.

    updated_atdate-time

    Date and time when the resource was updated.

    Team
    {
    "id": "string",
    "name": "string",
    "short_name": "string",
    "country": "string",
    "founded_at": "2024-07-29T15:51:28.071Z",
    "venue": {
    "id": "string",
    "name": "string"
    },
    "colors": {
    "primary": "string",
    "secondary": "string",
    "tertiary": "string"
    },
    "primary_rival_team_id": "string",
    "rival_teams": [
    {
    "id": "string",
    "name": "string"
    }
    ],
    "captain": {
    "id": "string",
    "first_name": "string",
    "last_name": "string",
    "position_code": "C",
    "nationality": "string"
    },
    "staff": [
    {
    "id": "string",
    "first_name": "string",
    "last_name": "string",
    "position_code": "C",
    "nationality": "string"
    }
    ],
    "links": [
    {
    "kind": "bluesky",
    "url": "string"
    }
    ],
    "created_at": "2024-07-29T15:51:28.071Z",
    "updated_at": "2024-07-29T15:51:28.071Z"
    }