> 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/accounts/jwt.md).

# JWT

## 토큰 유효성 확인

<mark style="color:green;">`POST`</mark> `http://127.0.0.1:8000/api/auth/verify/`

#### Request Body

| Name                                    | Type   | Description          |
| --------------------------------------- | ------ | -------------------- |
| token<mark style="color:red;">\*</mark> | String | 발급 받았던 access\_token |

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

{% endtab %}
{% endtabs %}

## 토큰 재발급

<mark style="color:green;">`POST`</mark> `http://127.0.0.1:8000/api/auth/refresh/`

#### Request Body

| Name                                      | Type   | Description           |
| ----------------------------------------- | ------ | --------------------- |
| refresh<mark style="color:red;">\*</mark> | String | 발급 받았던 refresh\_token |

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

````json
```json
{
    "access": "access_token",
    "refresh": "refresh_token"
}
```
````

{% endtab %}
{% endtabs %}
