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

# Movie

## 모든 영화의 데이터를 가져옴

<mark style="color:blue;">`GET`</mark> `https://MovieBox.api/movie`

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

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="401: Unauthorized " %}

```javascript
{
    // Response
}
```

{% endtab %}
{% endtabs %}

## 해당 영화의 데이터를 가져옴

<mark style="color:blue;">`GET`</mark> `https://MovieBox.api/:movieId`

#### Path Parameters

| Name     | Type   | Description |
| -------- | ------ | ----------- |
| :movieId | String | movie id    |

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

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="404: Not Found " %}

```javascript
{
    // Response
}
```

{% endtab %}
{% endtabs %}
