> For the complete documentation index, see [llms.txt](https://docs.ggwp.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ggwp.com/kr/api-7/reputation-score.md).

# 평판 점수

\[ 기본 URL: `api.ggwp.com`]

`GET` /users/\<user\_id>/v1/reputation-score

## **설명**

평판 점수 API는 특정 사용자의 최신 점수를 가져오는 데 사용될 수 있습니다. 점수는 게임 내 사용자의 행동에서 도출됩니다. 점수 범위는 150에서 850까지이며, 값이 낮을수록 더 유해/부정적인 사용자를 나타냅니다.

샘플 호출:

```bash
curl --request GET 'https://api.ggwp.com/users/<user_id>/v1/reputation-score' \
--header 'x-api-key: api_key' \
--header 'Content-Type: application/json'
```

## **출력**

* 200 - 성공적인 작업

```json
{
    "reputation_score": 430
}
```

* 403
  * 잘못되었거나 누락된 API 키
* 404
  * 사용자를 찾을 수 없습니다
* 500
  * 오류 응답. 평판 점수를 가져올 수 없습니다
