# GET /tournaments/:id/courts/:courtId

This endpoint retrieves a single court.

:::note
A court object includes the `currentMatchId` of the currently assigned match, if a match is assigned and announced.
:::

## Parameters

| Parameter | In | Example |
| --- | --- | --- |
| `id` | path | `tio:4AHchFkVAecs2` |
| `courtId` | path | `tio:XBZxd1GA3Kog9` |
| `includeMatchDetails` | query | `true` |

## Responses

```json
{
  "id": "tio:dLUOkXt5oHEvq",
  "number": 2,
  "name": "2",
  "currentMatchId": "tio:dWT5oSbv2kYQg"
}
```
```json
{
  "id": "tio:dLUOkXt5oHEvq",
  "number": 2,
  "name": "2",
  "currentMatchId": "tio:dWT5oSbv2kYQg",
  "currentMatch": {
    "id": "tio:dWT5oSbv2kYQg",
    "entries": [
      {
        "id": "05-2553_05-4357",
        "name": "Helmut Poppen / Sophia Poppen"
      },
      {
        "id": "05-9012_05-9876",
        "name": "Caroline Conrad / Andrei Andros"
      }
    ],
    "state": "running",
    "encounters": [],
    "startTime": "2024-07-03T14:39:16.575Z"
  }
}
```