# Competition Details

## Competition Details

> \## Endpoint Description\
> \
> This API endpoint retrieves detailed information about a specific football competition based on the provided tournament identifier (\`:tid\`).\
> \
> \### HTTP Method\
> \
> \`GET\`\
> \
> \### Endpoint\
> \
> \`<https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid\\`\\>
> \
> \### Request Parameters\
> \
> \- \`:tid\` (Path Parameter): The unique identifier for the tournament you want to retrieve information for. This should be replaced with the actual tournament ID.\
> &#x20;   \
> \
> \### Response Fields\
> \
> \- \`status\`: Indicates the success of the request.\
> &#x20;   \
> \- \`statusCode\`: A numerical code representing the status of the response.\
> &#x20;   \
> \- \`message\`: Additional information about the response.\
> &#x20;   \
> \- \`response\`: Contains detailed information about the competition, including:\
> &#x20;   \
> &#x20;   \- \`name\`: Name of the competition.\
> &#x20;       \
> &#x20;   \- \`category\`: Details about the category of the competition.\
> &#x20;       \
> &#x20;   \- \`titleHolder\`: Information about the current title holder.\
> &#x20;       \
> &#x20;   \- \`mostTitlesTeams\`: Teams with the most titles in the competition.\
> &#x20;       \
> &#x20;   \- \`seasons\`: List of seasons associated with the competition.\
> &#x20;       \
> &#x20;   \- \`featuredMatch\`: Details of featured matches within the competition.\
> &#x20;       \
> \
> This endpoint provides comprehensive details about a specific football competition, including its structure, title holders, historical data, and current season information.

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Competition Details"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/competitions/{tid}":{"get":{"tags":["Competition Details"],"summary":"Competition Details","description":"## Endpoint Description\n\nThis API endpoint retrieves detailed information about a specific football competition based on the provided tournament identifier (`:tid`).\n\n### HTTP Method\n\n`GET`\n\n### Endpoint\n\n`https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid`\n\n### Request Parameters\n\n- `:tid` (Path Parameter): The unique identifier for the tournament you want to retrieve information for. This should be replaced with the actual tournament ID.\n    \n\n### Response Fields\n\n- `status`: Indicates the success of the request.\n    \n- `statusCode`: A numerical code representing the status of the response.\n    \n- `message`: Additional information about the response.\n    \n- `response`: Contains detailed information about the competition, including:\n    \n    - `name`: Name of the competition.\n        \n    - `category`: Details about the category of the competition.\n        \n    - `titleHolder`: Information about the current title holder.\n        \n    - `mostTitlesTeams`: Teams with the most titles in the competition.\n        \n    - `seasons`: List of seasons associated with the competition.\n        \n    - `featuredMatch`: Details of featured matches within the competition.\n        \n\nThis endpoint provides comprehensive details about a specific football competition, including its structure, title holders, historical data, and current season information.","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"tid","in":"path","schema":{"type":"integer"},"required":true}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"string"}}}}}}}}}
```

## Competition Featured

> \## Endpoint Description\
> \
> This endpoint retrieves featured matches for a specific tournament in the football API. It allows users to access detailed information about ongoing or upcoming matches within a specified tournament.\
> \
> \### Request\
> \
> \- \*\*Method\*\*: GET\
> &#x20;   \
> \- \*\*URL\*\*: \`<https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/featured\\`\\>
> &#x20;   \
> \
> \### Path Parameters\
> \
> \- \`:tid\` (required): The unique identifier for the tournament. This parameter specifies which tournament's featured matches are being requested.\
> &#x20;   \
> \
> \### Expected Response\
> \
> The response will return a JSON object containing the following structure:\
> \
> \- \*\*status\*\*: A boolean indicating the success of the request.\
> &#x20;   \
> \- \*\*statusCode\*\*: An integer representing the status code of the response.\
> &#x20;   \
> \- \*\*message\*\*: A string providing additional information about the request status (if any).\
> &#x20;   \
> \- \*\*response\*\*: An array of featured match objects, each containing:\
> &#x20;   \
> &#x20;   \- \*\*tournamentId\*\*: The ID of the tournament.\
> &#x20;       \
> &#x20;   \- \*\*id\*\*: The unique ID of the match.\
> &#x20;       \
> &#x20;   \- \*\*startTimestamp\*\*: The start time of the match in Unix timestamp format.\
> &#x20;       \
> &#x20;   \- \*\*detailId\*\*: An identifier for detailed match information.\
> &#x20;       \
> &#x20;   \- \*\*season\*\*: An object containing:\
> &#x20;       \
> &#x20;       \- \*\*name\*\*: The name of the season.\
> &#x20;           \
> &#x20;       \- \*\*year\*\*: The year of the season.\
> &#x20;           \
> &#x20;       \- \*\*id\*\*: The ID of the season.\
> &#x20;           \
> &#x20;   \- \*\*roundInfo\*\*: An object providing details about the round:\
> &#x20;       \
> &#x20;       \- \*\*round\*\*: The round number.\
> &#x20;           \
> &#x20;       \- \*\*name\*\*: The name of the round.\
> &#x20;           \
> &#x20;   \- \*\*status\*\*: An object with match status details:\
> &#x20;       \
> &#x20;       \- \*\*code\*\*: The status code.\
> &#x20;           \
> &#x20;       \- \*\*description\*\*: A textual description of the status.\
> &#x20;           \
> &#x20;       \- \*\*type\*\*: The type of status.\
> &#x20;           \
> &#x20;   \- \*\*homeTeam\*\*: An object containing details about the home team, including:\
> &#x20;       \
> &#x20;       \- \*\*name\*\*: The name of the team.\
> &#x20;           \
> &#x20;       \- \*\*shortName\*\*: The abbreviated name of the team.\
> &#x20;           \
> &#x20;       \- \*\*gender\*\*: The gender category of the team.\
> &#x20;           \
> &#x20;       \- \*\*nameCode\*\*: The code used for the team's name.\
> &#x20;           \
> &#x20;       \- \*\*disabled\*\*: A boolean indicating if the team is disabled.\
> &#x20;           \
> &#x20;       \- \*\*national\*\*: A boolean indicating if the team is a national team.\
> &#x20;           \
> &#x20;       \- \*\*type\*\*: The type of team (e.g., club, national).\
> &#x20;           \
> &#x20;       \- \*\*id\*\*: The unique ID of the team.\
> &#x20;           \
> &#x20;       \- \*\*country\*\*: An object containing country details.\
> &#x20;           \
> &#x20;       \- \*\*subTeams\*\*: An array of sub-teams, if applicable.\
> &#x20;           \
> &#x20;   \- \*\*homeScore\*\*: An object containing aggregated score information for the home team.\
> &#x20;       \
> &#x20;   \- \*\*awayTeam\*\*: Similar structure as homeTeam, but for the away team.\
> &#x20;       \
> &#x20;   \- \*\*awayScore\*\*: An object containing aggregated score information for the away team.\
> &#x20;       \
> &#x20;   \- \*\*time\*\*: An object with timing information for the match.\
> &#x20;       \
> &#x20;   \- \*\*tournament\*\*: An object containing tournament details, including:\
> &#x20;       \
> &#x20;       \- \*\*id\*\*: The ID of the tournament.\
> &#x20;           \
> &#x20;       \- \*\*name\*\*: The name of the tournament.\
> &#x20;           \
> &#x20;       \- \*\*category\*\*: An object with category details.\
> &#x20;           \
> &#x20;       \- \*\*details\*\*: An object with additional tournament details.\
> &#x20;           \
> \
> \### Additional Notes\
> \
> \- Ensure that the \`:tid\` parameter is correctly replaced with a valid tournament ID to receive the appropriate data.\
> &#x20;   \
> \- The response may include multiple featured matches, depending on the tournament and its scheduling.

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Competition Details"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/competitions/{tid}/featured":{"get":{"tags":["Competition Details"],"summary":"Competition Featured","description":"## Endpoint Description\n\nThis endpoint retrieves featured matches for a specific tournament in the football API. It allows users to access detailed information about ongoing or upcoming matches within a specified tournament.\n\n### Request\n\n- **Method**: GET\n    \n- **URL**: `https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/featured`\n    \n\n### Path Parameters\n\n- `:tid` (required): The unique identifier for the tournament. This parameter specifies which tournament's featured matches are being requested.\n    \n\n### Expected Response\n\nThe response will return a JSON object containing the following structure:\n\n- **status**: A boolean indicating the success of the request.\n    \n- **statusCode**: An integer representing the status code of the response.\n    \n- **message**: A string providing additional information about the request status (if any).\n    \n- **response**: An array of featured match objects, each containing:\n    \n    - **tournamentId**: The ID of the tournament.\n        \n    - **id**: The unique ID of the match.\n        \n    - **startTimestamp**: The start time of the match in Unix timestamp format.\n        \n    - **detailId**: An identifier for detailed match information.\n        \n    - **season**: An object containing:\n        \n        - **name**: The name of the season.\n            \n        - **year**: The year of the season.\n            \n        - **id**: The ID of the season.\n            \n    - **roundInfo**: An object providing details about the round:\n        \n        - **round**: The round number.\n            \n        - **name**: The name of the round.\n            \n    - **status**: An object with match status details:\n        \n        - **code**: The status code.\n            \n        - **description**: A textual description of the status.\n            \n        - **type**: The type of status.\n            \n    - **homeTeam**: An object containing details about the home team, including:\n        \n        - **name**: The name of the team.\n            \n        - **shortName**: The abbreviated name of the team.\n            \n        - **gender**: The gender category of the team.\n            \n        - **nameCode**: The code used for the team's name.\n            \n        - **disabled**: A boolean indicating if the team is disabled.\n            \n        - **national**: A boolean indicating if the team is a national team.\n            \n        - **type**: The type of team (e.g., club, national).\n            \n        - **id**: The unique ID of the team.\n            \n        - **country**: An object containing country details.\n            \n        - **subTeams**: An array of sub-teams, if applicable.\n            \n    - **homeScore**: An object containing aggregated score information for the home team.\n        \n    - **awayTeam**: Similar structure as homeTeam, but for the away team.\n        \n    - **awayScore**: An object containing aggregated score information for the away team.\n        \n    - **time**: An object with timing information for the match.\n        \n    - **tournament**: An object containing tournament details, including:\n        \n        - **id**: The ID of the tournament.\n            \n        - **name**: The name of the tournament.\n            \n        - **category**: An object with category details.\n            \n        - **details**: An object with additional tournament details.\n            \n\n### Additional Notes\n\n- Ensure that the `:tid` parameter is correctly replaced with a valid tournament ID to receive the appropriate data.\n    \n- The response may include multiple featured matches, depending on the tournament and its scheduling.","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"tid","in":"path","schema":{"type":"integer"},"required":true}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"string"}}}}}}}}}
```

## Competition Season Info

> \### Endpoint Description\
> \
> This endpoint retrieves detailed information about a specific football competition for a given season. It allows users to access various statistics related to the competition, including team performance metrics.\
> \
> \### Request\
> \
> \- \*\*Method\*\*: GET\
> &#x20;   \
> \- \*\*URL\*\*: \`<https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/season/:sid/info\\`\\>
> &#x20;   \
> \
> \#### Path Parameters\
> \
> \- \`:tid\` (string): The unique identifier for the tournament.\
> &#x20;   \
> \- \`:sid\` (string): The unique identifier for the season.\
> &#x20;   \
> \
> \### Response\
> \
> The response will return a JSON object containing the following fields:\
> \
> \- \*\*status\*\* (boolean): Indicates whether the request was successful.\
> &#x20;   \
> \- \*\*statusCode\*\* (integer): The status code of the response.\
> &#x20;   \
> \- \*\*message\*\* (string): A message related to the request status.\
> &#x20;   \
> \- \*\*response\*\* (object): Contains detailed statistics for the competition:\
> &#x20;   \
> &#x20;   \- \*\*goals\*\* (integer): Total number of goals scored.\
> &#x20;       \
> &#x20;   \- \*\*homeTeamWins\*\* (integer): Total number of wins by home teams.\
> &#x20;       \
> &#x20;   \- \*\*awayTeamWins\*\* (integer): Total number of wins by away teams.\
> &#x20;       \
> &#x20;   \- \*\*draws\*\* (integer): Total number of drawn matches.\
> &#x20;       \
> &#x20;   \- \*\*yellowCards\*\* (integer): Total number of yellow cards issued.\
> &#x20;       \
> &#x20;   \- \*\*redCards\*\* (integer): Total number of red cards issued.\
> &#x20;       \
> &#x20;   \- \*\*newcomersUpperDivision\*\* (array): List of newcomers in the upper division.\
> &#x20;       \
> &#x20;   \- \*\*newcomersLowerDivision\*\* (array): List of newcomers in the lower division.\
> &#x20;       \
> &#x20;   \- \*\*newcomersOther\*\* (array): List of newcomers in other divisions.\
> &#x20;       \
> &#x20;   \- \*\*numberOfCompetitors\*\* (integer): Total number of competitors in the competition.\
> &#x20;       \
> &#x20;   \- \*\*id\*\* (integer): Unique identifier for the competition.\
> &#x20;       \
> &#x20;   \- \*\*hostCountries\*\* (array): List of countries hosting the competition.\
> &#x20;       \
> \
> This structure allows clients to easily interpret the competition's performance and statistics for the specified season.

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Competition Details"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/competitions/{tid}/season/{sid}/info":{"get":{"tags":["Competition Details"],"summary":"Competition Season Info","description":"### Endpoint Description\n\nThis endpoint retrieves detailed information about a specific football competition for a given season. It allows users to access various statistics related to the competition, including team performance metrics.\n\n### Request\n\n- **Method**: GET\n    \n- **URL**: `https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/season/:sid/info`\n    \n\n#### Path Parameters\n\n- `:tid` (string): The unique identifier for the tournament.\n    \n- `:sid` (string): The unique identifier for the season.\n    \n\n### Response\n\nThe response will return a JSON object containing the following fields:\n\n- **status** (boolean): Indicates whether the request was successful.\n    \n- **statusCode** (integer): The status code of the response.\n    \n- **message** (string): A message related to the request status.\n    \n- **response** (object): Contains detailed statistics for the competition:\n    \n    - **goals** (integer): Total number of goals scored.\n        \n    - **homeTeamWins** (integer): Total number of wins by home teams.\n        \n    - **awayTeamWins** (integer): Total number of wins by away teams.\n        \n    - **draws** (integer): Total number of drawn matches.\n        \n    - **yellowCards** (integer): Total number of yellow cards issued.\n        \n    - **redCards** (integer): Total number of red cards issued.\n        \n    - **newcomersUpperDivision** (array): List of newcomers in the upper division.\n        \n    - **newcomersLowerDivision** (array): List of newcomers in the lower division.\n        \n    - **newcomersOther** (array): List of newcomers in other divisions.\n        \n    - **numberOfCompetitors** (integer): Total number of competitors in the competition.\n        \n    - **id** (integer): Unique identifier for the competition.\n        \n    - **hostCountries** (array): List of countries hosting the competition.\n        \n\nThis structure allows clients to easily interpret the competition's performance and statistics for the specified season.","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"tid","in":"path","schema":{"type":"integer"},"required":true},{"name":"sid","in":"path","schema":{"type":"integer"},"required":true}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"string"}}}}}}}}}
```

## Competition Season Matches

> \## Endpoint Description\
> \
> This endpoint retrieves a list of matches for a specific tournament and season in the football API. It provides detailed information about each match, including team details, scores, and tournament information.\
> \
> \### Request\
> \
> \*\*HTTP Method:\*\* GET  \
> \*\*Endpoint:\*\* \`<https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/season/:sid/matches\\`\\>
> \
> \#### Path Parameters\
> \
> \- \`:tid\` (Tournament ID): The unique identifier for the tournament.\
> &#x20;   \
> \- \`:sid\` (Season ID): The unique identifier for the season within the tournament.\
> &#x20;   \
> \
> \### Response\
> \
> The response will return a JSON object containing the following structure:\
> \
> \- \*\*status\*\* (boolean): Indicates the success of the request.\
> &#x20;   \
> \- \*\*statusCode\*\* (integer): A code representing the status of the request.\
> &#x20;   \
> \- \*\*message\*\* (string): A message providing additional information about the request.\
> &#x20;   \
> \- \*\*response\*\* (array): An array of match objects, each containing:\
> &#x20;   \
> &#x20;   \- \*\*tournamentId\*\* (integer): The ID of the tournament.\
> &#x20;       \
> &#x20;   \- \*\*id\*\* (integer): The unique identifier for the match.\
> &#x20;       \
> &#x20;   \- \*\*startTimestamp\*\* (integer): The start time of the match in timestamp format.\
> &#x20;       \
> &#x20;   \- \*\*detailId\*\* (integer): An identifier for match details.\
> &#x20;       \
> &#x20;   \- \*\*season\*\* (object): Contains season information including:\
> &#x20;       \
> &#x20;       \- \*\*name\*\* (string): The name of the season.\
> &#x20;           \
> &#x20;       \- \*\*year\*\* (string): The year of the season.\
> &#x20;           \
> &#x20;       \- \*\*seasonCoverageInfo\*\* (object): Additional coverage information for the season.\
> &#x20;           \
> &#x20;       \- \*\*id\*\* (integer): The unique identifier for the season.\
> &#x20;           \
> &#x20;   \- \*\*roundInfo\*\* (object): Information about the round of the match including:\
> &#x20;       \
> &#x20;       \- \*\*round\*\* (integer): The round number.\
> &#x20;           \
> &#x20;       \- \*\*name\*\* (string): The name of the round.\
> &#x20;           \
> &#x20;   \- \*\*status\*\* (object): Current status of the match including:\
> &#x20;       \
> &#x20;       \- \*\*code\*\* (integer): Status code.\
> &#x20;           \
> &#x20;       \- \*\*description\*\* (string): Description of the status.\
> &#x20;           \
> &#x20;       \- \*\*type\*\* (string): Type of status.\
> &#x20;           \
> &#x20;   \- \*\*homeTeam\*\* (object): Details of the home team including:\
> &#x20;       \
> &#x20;       \- \*\*name\*\*, \*\*shortName\*\*, \*\*gender\*\*, \*\*nameCode\*\*, \*\*disabled\*\*, \*\*national\*\*, \*\*type\*\*, \*\*id\*\*, \*\*country\*\* (object), \*\*subTeams\*\* (array).\
> &#x20;           \
> &#x20;   \- \*\*homeScore\*\* (object): Current score details for the home team including:\
> &#x20;       \
> &#x20;       \- \*\*current\*\*, \*\*display\*\*, \*\*period1\*\*, \*\*period2\*\*, \*\*normaltime\*\* (all integers).\
> &#x20;           \
> &#x20;   \- \*\*awayTeam\*\* (object): Details of the away team (same structure as homeTeam).\
> &#x20;       \
> &#x20;   \- \*\*awayScore\*\* (object): Current score details for the away team (same structure as homeScore).\
> &#x20;       \
> &#x20;   \- \*\*time\*\* (object): Information about the current period start timestamp.\
> &#x20;       \
> &#x20;   \- \*\*tournament\*\* (object): Information about the tournament including:\
> &#x20;       \
> &#x20;       \- \*\*id\*\*, \*\*name\*\*, \*\*category\*\* (object), \*\*details\*\* (object).

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Competition Details"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/competitions/{tid}/season/{sid}/matches":{"get":{"tags":["Competition Details"],"summary":"Competition Season Matches","description":"## Endpoint Description\n\nThis endpoint retrieves a list of matches for a specific tournament and season in the football API. It provides detailed information about each match, including team details, scores, and tournament information.\n\n### Request\n\n**HTTP Method:** GET  \n**Endpoint:** `https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/season/:sid/matches`\n\n#### Path Parameters\n\n- `:tid` (Tournament ID): The unique identifier for the tournament.\n    \n- `:sid` (Season ID): The unique identifier for the season within the tournament.\n    \n\n### Response\n\nThe response will return a JSON object containing the following structure:\n\n- **status** (boolean): Indicates the success of the request.\n    \n- **statusCode** (integer): A code representing the status of the request.\n    \n- **message** (string): A message providing additional information about the request.\n    \n- **response** (array): An array of match objects, each containing:\n    \n    - **tournamentId** (integer): The ID of the tournament.\n        \n    - **id** (integer): The unique identifier for the match.\n        \n    - **startTimestamp** (integer): The start time of the match in timestamp format.\n        \n    - **detailId** (integer): An identifier for match details.\n        \n    - **season** (object): Contains season information including:\n        \n        - **name** (string): The name of the season.\n            \n        - **year** (string): The year of the season.\n            \n        - **seasonCoverageInfo** (object): Additional coverage information for the season.\n            \n        - **id** (integer): The unique identifier for the season.\n            \n    - **roundInfo** (object): Information about the round of the match including:\n        \n        - **round** (integer): The round number.\n            \n        - **name** (string): The name of the round.\n            \n    - **status** (object): Current status of the match including:\n        \n        - **code** (integer): Status code.\n            \n        - **description** (string): Description of the status.\n            \n        - **type** (string): Type of status.\n            \n    - **homeTeam** (object): Details of the home team including:\n        \n        - **name**, **shortName**, **gender**, **nameCode**, **disabled**, **national**, **type**, **id**, **country** (object), **subTeams** (array).\n            \n    - **homeScore** (object): Current score details for the home team including:\n        \n        - **current**, **display**, **period1**, **period2**, **normaltime** (all integers).\n            \n    - **awayTeam** (object): Details of the away team (same structure as homeTeam).\n        \n    - **awayScore** (object): Current score details for the away team (same structure as homeScore).\n        \n    - **time** (object): Information about the current period start timestamp.\n        \n    - **tournament** (object): Information about the tournament including:\n        \n        - **id**, **name**, **category** (object), **details** (object).","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"tid","in":"path","schema":{"type":"integer"},"required":true},{"name":"sid","in":"path","schema":{"type":"integer"},"required":true}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"string"}}}}}}}}}
```

## Competition Season Standings

> \## Endpoint Description\
> \
> This endpoint retrieves the standings for a specific tournament and season in football. It provides detailed information about the teams participating in the tournament, including their performance metrics.\
> \
> \### Request\
> \
> \- \*\*Method\*\*: GET\
> &#x20;   \
> \- \*\*URL\*\*: \`<https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/season/:sid/standings\\`\\>
> &#x20;   \
> \
> \#### Path Parameters\
> \
> \- \`:tid\` (Tournament ID): The unique identifier for the tournament whose standings are being requested.\
> &#x20;   \
> \- \`:sid\` (Season ID): The unique identifier for the season of the tournament.\
> &#x20;   \
> \
> \### Response\
> \
> The response is a JSON object containing the following structure:\
> \
> \- \`status\` (boolean): Indicates whether the request was successful.\
> &#x20;   \
> \- \`statusCode\` (integer): The status code of the response.\
> &#x20;   \
> \- \`message\` (string): A message providing additional information about the request.\
> &#x20;   \
> \- \`response\` (array): An array containing the standings for the specified tournament and season, structured as follows:\
> &#x20;   \
> &#x20;   \- \`id\` (integer): The unique identifier for the standings entry.\
> &#x20;       \
> &#x20;   \- \`type\` (string): The type of standings.\
> &#x20;       \
> &#x20;   \- \`name\` (string): The name of the standings.\
> &#x20;       \
> &#x20;   \- \`standings\` (array): An array of team standings, with each entry containing:\
> &#x20;       \
> &#x20;       \- \`team\` (object): Information about the team, including:\
> &#x20;           \
> &#x20;           \- \`name\` (string): The full name of the team.\
> &#x20;               \
> &#x20;           \- \`shortName\` (string): The abbreviated name of the team.\
> &#x20;               \
> &#x20;           \- \`gender\` (string): The gender category of the team.\
> &#x20;               \
> &#x20;           \- \`nameCode\` (string): A code representing the team name.\
> &#x20;               \
> &#x20;           \- \`disabled\` (boolean): Indicates if the team is disabled.\
> &#x20;               \
> &#x20;           \- \`national\` (boolean): Indicates if the team is a national team.\
> &#x20;               \
> &#x20;           \- \`type\` (integer): The type of team.\
> &#x20;               \
> &#x20;           \- \`id\` (integer): The unique identifier for the team.\
> &#x20;               \
> &#x20;           \- \`country\` (object): Information about the team's country, including:\
> &#x20;               \
> &#x20;               \- \`alpha2\` (string): The 2-letter country code.\
> &#x20;                   \
> &#x20;               \- \`alpha3\` (string): The 3-letter country code.\
> &#x20;                   \
> &#x20;               \- \`name\` (string): The name of the country.\
> &#x20;                   \
> &#x20;       \- \`descriptions\` (array): Additional descriptions related to the team's standings.\
> &#x20;           \
> &#x20;       \- \`promotion\` (object): Information about promotion, including:\
> &#x20;           \
> &#x20;           \- \`text\` (string): Text related to promotion.\
> &#x20;               \
> &#x20;           \- \`id\` (integer): The identifier for the promotion.\
> &#x20;               \
> &#x20;       \- \`position\` (integer): The position of the team in the standings.\
> &#x20;           \
> &#x20;       \- \`matches\` (integer): The number of matches played.\
> &#x20;           \
> &#x20;       \- \`wins\` (integer): The number of wins.\
> &#x20;           \
> &#x20;       \- \`scoresFor\` (integer): The total scores for the team.\
> &#x20;           \
> &#x20;       \- \`scoresAgainst\` (integer): The total scores against the team.\
> &#x20;           \
> &#x20;       \- \`id\` (integer): The unique identifier for the standings entry.\
> &#x20;           \
> &#x20;       \- \`losses\` (integer): The number of losses.\
> &#x20;           \
> &#x20;       \- \`draws\` (integer): The number of draws.\
> &#x20;           \
> &#x20;       \- \`points\` (integer): The total points accumulated.\
> &#x20;           \
> &#x20;       \- \`scoreDiffFormatted\` (string): A formatted string representing the score difference.\
> &#x20;           \
> &#x20;   \- \`tournament\` (object): Information about the tournament, including:\
> &#x20;       \
> &#x20;       \- \`id\` (integer): The unique identifier for the tournament.\
> &#x20;           \
> &#x20;       \- \`name\` (string): The name of the tournament.\
> &#x20;           \
> &#x20;       \- \`category\` (object): Information about the category of the tournament, including:\
> &#x20;           \
> &#x20;           \- \`name\` (string): The name of the category.\
> &#x20;               \
> &#x20;           \- \`id\` (integer): The unique identifier for the category.\
> &#x20;               \
> &#x20;           \- \`country\` (object): Information about the country associated with the category.\
> &#x20;               \
> &#x20;           \- \`flag\` (string): The flag associated with the category.\
> &#x20;               \
> &#x20;       \- \`details\` (object): Additional details about the tournament, including:\
> &#x20;           \
> &#x20;           \- \`name\` (string): The name of the tournament details.\
> &#x20;               \
> &#x20;           \- \`category\` (object): The category information.\
> &#x20;               \
> &#x20;           \- \`hasPerformanceGraphFeature\` (boolean): Indicates if the tournament has a performance graph feature.\
> &#x20;               \
> &#x20;           \- \`id\` (integer): The unique identifier for the tournament details.\
> &#x20;               \
> &#x20;           \- \`country\` (object): Information about the country associated with the tournament.\
> &#x20;               \
> &#x20;           \- \`displayInverseHomeAwayTeams\` (boolean): Indicates if home and away teams should be displayed inversely.\
> &#x20;               \
> &#x20;   \- \`updatedAtTimestamp\` (integer): The timestamp of the last update for the standings.\
> &#x20;       \
> \
> This endpoint is essential for retrieving current standings and performance metrics for teams in a specified tournament and season.

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Competition Details"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/competitions/{tid}/season/{sid}/standings":{"get":{"tags":["Competition Details"],"summary":"Competition Season Standings","description":"## Endpoint Description\n\nThis endpoint retrieves the standings for a specific tournament and season in football. It provides detailed information about the teams participating in the tournament, including their performance metrics.\n\n### Request\n\n- **Method**: GET\n    \n- **URL**: `https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/season/:sid/standings`\n    \n\n#### Path Parameters\n\n- `:tid` (Tournament ID): The unique identifier for the tournament whose standings are being requested.\n    \n- `:sid` (Season ID): The unique identifier for the season of the tournament.\n    \n\n### Response\n\nThe response is a JSON object containing the following structure:\n\n- `status` (boolean): Indicates whether the request was successful.\n    \n- `statusCode` (integer): The status code of the response.\n    \n- `message` (string): A message providing additional information about the request.\n    \n- `response` (array): An array containing the standings for the specified tournament and season, structured as follows:\n    \n    - `id` (integer): The unique identifier for the standings entry.\n        \n    - `type` (string): The type of standings.\n        \n    - `name` (string): The name of the standings.\n        \n    - `standings` (array): An array of team standings, with each entry containing:\n        \n        - `team` (object): Information about the team, including:\n            \n            - `name` (string): The full name of the team.\n                \n            - `shortName` (string): The abbreviated name of the team.\n                \n            - `gender` (string): The gender category of the team.\n                \n            - `nameCode` (string): A code representing the team name.\n                \n            - `disabled` (boolean): Indicates if the team is disabled.\n                \n            - `national` (boolean): Indicates if the team is a national team.\n                \n            - `type` (integer): The type of team.\n                \n            - `id` (integer): The unique identifier for the team.\n                \n            - `country` (object): Information about the team's country, including:\n                \n                - `alpha2` (string): The 2-letter country code.\n                    \n                - `alpha3` (string): The 3-letter country code.\n                    \n                - `name` (string): The name of the country.\n                    \n        - `descriptions` (array): Additional descriptions related to the team's standings.\n            \n        - `promotion` (object): Information about promotion, including:\n            \n            - `text` (string): Text related to promotion.\n                \n            - `id` (integer): The identifier for the promotion.\n                \n        - `position` (integer): The position of the team in the standings.\n            \n        - `matches` (integer): The number of matches played.\n            \n        - `wins` (integer): The number of wins.\n            \n        - `scoresFor` (integer): The total scores for the team.\n            \n        - `scoresAgainst` (integer): The total scores against the team.\n            \n        - `id` (integer): The unique identifier for the standings entry.\n            \n        - `losses` (integer): The number of losses.\n            \n        - `draws` (integer): The number of draws.\n            \n        - `points` (integer): The total points accumulated.\n            \n        - `scoreDiffFormatted` (string): A formatted string representing the score difference.\n            \n    - `tournament` (object): Information about the tournament, including:\n        \n        - `id` (integer): The unique identifier for the tournament.\n            \n        - `name` (string): The name of the tournament.\n            \n        - `category` (object): Information about the category of the tournament, including:\n            \n            - `name` (string): The name of the category.\n                \n            - `id` (integer): The unique identifier for the category.\n                \n            - `country` (object): Information about the country associated with the category.\n                \n            - `flag` (string): The flag associated with the category.\n                \n        - `details` (object): Additional details about the tournament, including:\n            \n            - `name` (string): The name of the tournament details.\n                \n            - `category` (object): The category information.\n                \n            - `hasPerformanceGraphFeature` (boolean): Indicates if the tournament has a performance graph feature.\n                \n            - `id` (integer): The unique identifier for the tournament details.\n                \n            - `country` (object): Information about the country associated with the tournament.\n                \n            - `displayInverseHomeAwayTeams` (boolean): Indicates if home and away teams should be displayed inversely.\n                \n    - `updatedAtTimestamp` (integer): The timestamp of the last update for the standings.\n        \n\nThis endpoint is essential for retrieving current standings and performance metrics for teams in a specified tournament and season.","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"tid","in":"path","schema":{"type":"integer"},"required":true},{"name":"sid","in":"path","schema":{"type":"integer"},"required":true}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"string"}}}}}}}}}
```

## Competition Season Top Players

> \## Get Top Players by Competition and Season\
> \
> This endpoint retrieves a list of top players for a specific football competition and season.\
> \
> \### Request Method\
> \
> \`GET\`\
> \
> \### Endpoint\
> \
> \`<https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/season/:sid/top-players\\`\\>
> \
> \### Path Parameters\
> \
> \- \`:tid\` (string): The unique identifier for the football competition.\
> &#x20;   \
> \- \`:sid\` (string): The unique identifier for the season of the competition.\
> &#x20;   \
> \
> \### Expected Response Format\
> \
> On a successful request, the API will return a JSON object containing the top players for the specified competition and season. The response will include details such as player names, positions, and performance statistics.

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Competition Details"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/competitions/{tid}/season/{sid}/top-players":{"get":{"tags":["Competition Details"],"summary":"Competition Season Top Players","description":"## Get Top Players by Competition and Season\n\nThis endpoint retrieves a list of top players for a specific football competition and season.\n\n### Request Method\n\n`GET`\n\n### Endpoint\n\n`https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/season/:sid/top-players`\n\n### Path Parameters\n\n- `:tid` (string): The unique identifier for the football competition.\n    \n- `:sid` (string): The unique identifier for the season of the competition.\n    \n\n### Expected Response Format\n\nOn a successful request, the API will return a JSON object containing the top players for the specified competition and season. The response will include details such as player names, positions, and performance statistics.","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"tid","in":"path","schema":{"type":"integer"},"required":true},{"name":"sid","in":"path","schema":{"type":"integer"},"required":true}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"string"}}}}}}}}}
```

## Competition Season Top Teams

> \## Get Top Teams in a Specific Competition Season\
> \
> This endpoint retrieves a list of top teams for a specified competition and season. It is useful for obtaining insights into the performance of teams within a particular league or tournament.\
> \
> \### Request Method\
> \
> \`GET\`\
> \
> \### Endpoint\
> \
> \`<https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/season/:sid/top-teams\\`\\>
> \
> \### Path Parameters\
> \
> \- \`:tid\` (string): The unique identifier for the competition (e.g., league or tournament).\
> &#x20;   \
> \- \`:sid\` (string): The unique identifier for the season within the specified competition.\
> &#x20;   \
> \
> \### Expected Response Format\
> \
> The response will be in JSON format and will typically include:\
> \
> \- A list of top teams, each containing:\
> &#x20;   \
> &#x20;   \- \`teamId\`: The unique identifier for the team.\
> &#x20;       \
> &#x20;   \- \`teamName\`: The name of the team.\
> &#x20;       \
> &#x20;   \- \`points\`: The total points accumulated by the team in the specified season.\
> &#x20;       \
> &#x20;   \- \`matchesPlayed\`: The total number of matches played by the team.\
> &#x20;       \
> \
> \### Additional Notes\
> \
> \- Ensure that the values for \`:tid\` and \`:sid\` are valid to receive accurate results.\
> &#x20;   \
> \- This endpoint is particularly useful for sports analysts, fans, and developers looking to integrate team performance data into their applications.

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Competition Details"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/competitions/{tid}/season/{sid}/top-teams":{"get":{"tags":["Competition Details"],"summary":"Competition Season Top Teams","description":"## Get Top Teams in a Specific Competition Season\n\nThis endpoint retrieves a list of top teams for a specified competition and season. It is useful for obtaining insights into the performance of teams within a particular league or tournament.\n\n### Request Method\n\n`GET`\n\n### Endpoint\n\n`https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/season/:sid/top-teams`\n\n### Path Parameters\n\n- `:tid` (string): The unique identifier for the competition (e.g., league or tournament).\n    \n- `:sid` (string): The unique identifier for the season within the specified competition.\n    \n\n### Expected Response Format\n\nThe response will be in JSON format and will typically include:\n\n- A list of top teams, each containing:\n    \n    - `teamId`: The unique identifier for the team.\n        \n    - `teamName`: The name of the team.\n        \n    - `points`: The total points accumulated by the team in the specified season.\n        \n    - `matchesPlayed`: The total number of matches played by the team.\n        \n\n### Additional Notes\n\n- Ensure that the values for `:tid` and `:sid` are valid to receive accurate results.\n    \n- This endpoint is particularly useful for sports analysts, fans, and developers looking to integrate team performance data into their applications.","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"tid","in":"path","schema":{"type":"integer"},"required":true},{"name":"sid","in":"path","schema":{"type":"integer"},"required":true}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"string"}}}}}}}}}
```

## Competition Season Rounds

> \## Get Competition Rounds\
> \
> This endpoint retrieves the rounds of a specific season for a given competition in football.\
> \
> \### Request\
> \
> \- \*\*Method\*\*: \`GET\`\
> &#x20;   \
> \- \*\*Endpoint\*\*: \`<https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/season/:sid/rounds\\`\\>
> &#x20;   \
> \
> \### Path Parameters\
> \
> \- \`:tid\` (string): The unique identifier for the competition.\
> &#x20;   \
> \- \`:sid\` (string): The unique identifier for the season.\
> &#x20;   \
> \
> \### Response Format\
> \
> The response will be in JSON format and includes the following fields:\
> \
> \- \`status\` (boolean): Indicates if the request was successful.\
> &#x20;   \
> \- \`statusCode\` (integer): The status code of the response.\
> &#x20;   \
> \- \`message\` (string): A message providing additional information about the request.\
> &#x20;   \
> \- \`response\` (array): An array of objects containing details about each round, where each object includes:\
> &#x20;   \
> &#x20;   \- \`round\` (integer): The round number.\
> &#x20;       \
> &#x20;   \- \`name\` (string): The name of the round.\
> &#x20;       \
> &#x20;   \- \`prefix\` (string): A prefix associated with the round.\
> &#x20;       \
> &#x20;   \- \`current\` (boolean): Indicates if this is the current round.\
> &#x20;       \
> \
> This endpoint is useful for obtaining the structure of competition rounds within a specified season.

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Competition Details"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/competitions/{tid}/season/{sid}/rounds":{"get":{"tags":["Competition Details"],"summary":"Competition Season Rounds","description":"## Get Competition Rounds\n\nThis endpoint retrieves the rounds of a specific season for a given competition in football.\n\n### Request\n\n- **Method**: `GET`\n    \n- **Endpoint**: `https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/season/:sid/rounds`\n    \n\n### Path Parameters\n\n- `:tid` (string): The unique identifier for the competition.\n    \n- `:sid` (string): The unique identifier for the season.\n    \n\n### Response Format\n\nThe response will be in JSON format and includes the following fields:\n\n- `status` (boolean): Indicates if the request was successful.\n    \n- `statusCode` (integer): The status code of the response.\n    \n- `message` (string): A message providing additional information about the request.\n    \n- `response` (array): An array of objects containing details about each round, where each object includes:\n    \n    - `round` (integer): The round number.\n        \n    - `name` (string): The name of the round.\n        \n    - `prefix` (string): A prefix associated with the round.\n        \n    - `current` (boolean): Indicates if this is the current round.\n        \n\nThis endpoint is useful for obtaining the structure of competition rounds within a specified season.","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"tid","in":"path","schema":{"type":"integer"},"required":true},{"name":"sid","in":"path","schema":{"type":"integer"},"required":true}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"string"}}}}}}}}}
```

## Competition Season Rounds Matches

> \## Endpoint Description\
> \
> This API endpoint retrieves the matches for a specific round of a tournament in a given season. It provides detailed information about each match, including team details, scores, and tournament information.\
> \
> \### HTTP Method\
> \
> \`GET\`\
> \
> \### Endpoint\
> \
> \`<https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/season/:sid/rounds/matches\\`\\>
> \
> \### URL Parameters\
> \
> \- \`:tid\` (Tournament ID): The unique identifier for the tournament.\
> &#x20;   \
> \- \`:sid\` (Season ID): The unique identifier for the season.\
> &#x20;   \
> \
> \### Expected Response Format\
> \
> The response will be a JSON object containing the following structure:\
> \
> \- \`status\` (boolean): Indicates the success of the request.\
> &#x20;   \
> \- \`statusCode\` (integer): A code representing the status of the response.\
> &#x20;   \
> \- \`message\` (string): A message providing additional context about the response.\
> &#x20;   \
> \- \`response\` (array): An array of match details for the specified round, each containing:\
> &#x20;   \
> &#x20;   \- \`round\` (integer): The round number.\
> &#x20;       \
> &#x20;   \- \`name\` (string): The name of the round.\
> &#x20;       \
> &#x20;   \- \`matches\` (array): An array of match objects, each with:\
> &#x20;       \
> &#x20;       \- \`tournamentId\` (integer): The ID of the tournament.\
> &#x20;           \
> &#x20;       \- \`id\` (integer): The unique identifier for the match.\
> &#x20;           \
> &#x20;       \- \`startTimestamp\` (integer): The timestamp when the match starts.\
> &#x20;           \
> &#x20;       \- \`detailId\` (integer): The ID for detailed match information.\
> &#x20;           \
> &#x20;       \- \`season\` (object): Contains season details including:\
> &#x20;           \
> &#x20;           \- \`name\` (string): The name of the season.\
> &#x20;               \
> &#x20;           \- \`year\` (integer): The year of the season.\
> &#x20;               \
> &#x20;           \- \`seasonCoverageInfo\` (object): Additional coverage information.\
> &#x20;               \
> &#x20;           \- \`id\` (integer): The ID of the season.\
> &#x20;               \
> &#x20;       \- \`roundInfo\` (object): Information about the round including:\
> &#x20;           \
> &#x20;           \- \`round\` (integer): The round number.\
> &#x20;               \
> &#x20;           \- \`name\` (string): The name of the round.\
> &#x20;               \
> &#x20;       \- \`status\` (object): Current status of the match including:\
> &#x20;           \
> &#x20;           \- \`code\` (integer): Status code.\
> &#x20;               \
> &#x20;           \- \`description\` (string): Description of the status.\
> &#x20;               \
> &#x20;           \- \`type\` (string): Type of status.\
> &#x20;               \
> &#x20;       \- \`homeTeam\` (object): Details about the home team, including:\
> &#x20;           \
> &#x20;           \- \`name\` (string): Team name.\
> &#x20;               \
> &#x20;           \- \`shortName\` (string): Short name of the team.\
> &#x20;               \
> &#x20;           \- \`gender\` (string): Gender category of the team.\
> &#x20;               \
> &#x20;           \- \`disabled\` (boolean): Indicates if the team is disabled.\
> &#x20;               \
> &#x20;           \- \`national\` (boolean): Indicates if the team is national.\
> &#x20;               \
> &#x20;           \- \`country\` (object): Country details of the team.\
> &#x20;               \
> &#x20;       \- \`homeScore\` (object): Current score details for the home team.\
> &#x20;           \
> &#x20;       \- \`awayTeam\` (object): Details about the away team (similar structure to \`homeTeam\`).\
> &#x20;           \
> &#x20;       \- \`awayScore\` (object): Current score details for the away team.\
> &#x20;           \
> &#x20;       \- \`time\` (object): Information about the current period of the match.\
> &#x20;           \
> &#x20;       \- \`tournament\` (object): Details about the tournament including:\
> &#x20;           \
> &#x20;           \- \`id\` (integer): Tournament ID.\
> &#x20;               \
> &#x20;           \- \`name\` (string): Name of the tournament.\
> &#x20;               \
> &#x20;           \- \`category\` (object): Category details of the tournament.\
> &#x20;               \
> \
> \### Additional Notes\
> \
> \- Ensure to replace \`:tid\` and \`:sid\` with the appropriate tournament and season IDs when making the request.\
> &#x20;   \
> \- The response will provide comprehensive details for each match, which can be useful for applications displaying match schedules or statistics.

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Competition Details"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/competitions/{tid}/season/{sid}/rounds/matches":{"get":{"tags":["Competition Details"],"summary":"Competition Season Rounds Matches","description":"## Endpoint Description\n\nThis API endpoint retrieves the matches for a specific round of a tournament in a given season. It provides detailed information about each match, including team details, scores, and tournament information.\n\n### HTTP Method\n\n`GET`\n\n### Endpoint\n\n`https://apiv3.sportsapi360.com/football/api/v1/competitions/:tid/season/:sid/rounds/matches`\n\n### URL Parameters\n\n- `:tid` (Tournament ID): The unique identifier for the tournament.\n    \n- `:sid` (Season ID): The unique identifier for the season.\n    \n\n### Expected Response Format\n\nThe response will be a JSON object containing the following structure:\n\n- `status` (boolean): Indicates the success of the request.\n    \n- `statusCode` (integer): A code representing the status of the response.\n    \n- `message` (string): A message providing additional context about the response.\n    \n- `response` (array): An array of match details for the specified round, each containing:\n    \n    - `round` (integer): The round number.\n        \n    - `name` (string): The name of the round.\n        \n    - `matches` (array): An array of match objects, each with:\n        \n        - `tournamentId` (integer): The ID of the tournament.\n            \n        - `id` (integer): The unique identifier for the match.\n            \n        - `startTimestamp` (integer): The timestamp when the match starts.\n            \n        - `detailId` (integer): The ID for detailed match information.\n            \n        - `season` (object): Contains season details including:\n            \n            - `name` (string): The name of the season.\n                \n            - `year` (integer): The year of the season.\n                \n            - `seasonCoverageInfo` (object): Additional coverage information.\n                \n            - `id` (integer): The ID of the season.\n                \n        - `roundInfo` (object): Information about the round including:\n            \n            - `round` (integer): The round number.\n                \n            - `name` (string): The name of the round.\n                \n        - `status` (object): Current status of the match including:\n            \n            - `code` (integer): Status code.\n                \n            - `description` (string): Description of the status.\n                \n            - `type` (string): Type of status.\n                \n        - `homeTeam` (object): Details about the home team, including:\n            \n            - `name` (string): Team name.\n                \n            - `shortName` (string): Short name of the team.\n                \n            - `gender` (string): Gender category of the team.\n                \n            - `disabled` (boolean): Indicates if the team is disabled.\n                \n            - `national` (boolean): Indicates if the team is national.\n                \n            - `country` (object): Country details of the team.\n                \n        - `homeScore` (object): Current score details for the home team.\n            \n        - `awayTeam` (object): Details about the away team (similar structure to `homeTeam`).\n            \n        - `awayScore` (object): Current score details for the away team.\n            \n        - `time` (object): Information about the current period of the match.\n            \n        - `tournament` (object): Details about the tournament including:\n            \n            - `id` (integer): Tournament ID.\n                \n            - `name` (string): Name of the tournament.\n                \n            - `category` (object): Category details of the tournament.\n                \n\n### Additional Notes\n\n- Ensure to replace `:tid` and `:sid` with the appropriate tournament and season IDs when making the request.\n    \n- The response will provide comprehensive details for each match, which can be useful for applications displaying match schedules or statistics.","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"tid","in":"path","schema":{"type":"integer"},"required":true},{"name":"sid","in":"path","schema":{"type":"integer"},"required":true}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"string"}}}}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docsv3.sportsapi360.com/football-docs/api-collection-football/competition-details.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
