> For the complete documentation index, see [llms.txt](https://movie-team.gitbook.io/movieteam/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://movie-team.gitbook.io/movieteam/movies/undefined-3.md).

# 상영관

## 상영관 정보 조회

<mark style="color:blue;">`GET`</mark> `http://127.0.0.1:8000/api/movies/theater/<int:theater_pk>/`

#### Headers

| Name                                            | Type   | Description                    |
| ----------------------------------------------- | ------ | ------------------------------ |
| Authorization<mark style="color:red;">\*</mark> | String | "Bearer " + 발급 받은 access token |

{% tabs %}
{% tab title="200: OK " %}

````json
```json
{
    "id": 1,
    "seat_set": []
    "num": 1,
    "max_seat": 64,
    "rest_seat": 64,
    "start": "10:00:00",
    "end": "12:47:00",
    "movie": 34308
}
```
````

{% endtab %}
{% endtabs %}
