GET api/Sports/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Sport
NameDescriptionTypeAdditional information
ID

integer

None.

Name

string

Required

String length: inclusive between 0 and 100

FeedID

integer

None.

Created

date

None.

Active

boolean

None.

HasOfferings

boolean

None.

TournamentGroups

Collection of TournamentGroup

None.

Icon

string

None.

HasAsianHandicap

boolean

None.

IsConfigured

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "name": "sample string 2",
  "feedID": 3,
  "created": "2026-02-22T14:36:49.7285449+00:00",
  "active": true,
  "hasOfferings": true,
  "tournamentGroups": [
    {
      "id": 1,
      "name": "sample string 2",
      "created": "2026-02-22T14:36:49.7285449+00:00",
      "sportID": 4,
      "active": true
    },
    {
      "id": 1,
      "name": "sample string 2",
      "created": "2026-02-22T14:36:49.7285449+00:00",
      "sportID": 4,
      "active": true
    }
  ],
  "icon": "sample string 7",
  "hasAsianHandicap": true,
  "isConfigured": true
}