> 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/jp/apidokyumento-2/sukoa.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 キー、または API キーがありません
* 404
  * ユーザーが見つかりません
* 500
  * エラーレスポンス。レピュテーションスコアを取得できませんでした
