---
title: "ユーザー情報の取得"
method: GET
path: "/v1/users/{name}"
tags: ["users"]
---

# ユーザー情報の取得

`GET /v1/users/{name}`

指定したユーザーの情報を取得します。

## Path parameters

- `name` string, required

## Response `200`

成功

- User — ユーザーデータ
  - `name` string, required — ユーザー名 (多くの画面では先頭に @ を付けて表示されますが、ここでは含まれません)
  - `display_name` string, required — 名前
  - `is_protected` boolean, required — チェックイン履歴の非公開フラグ
  - `private_likes` boolean, required — いいね一覧の非公開フラグ
  - `bio` string — 自己紹介文
  - `url` string, uri — プロフィール上に掲載するURL
  - `checkin_summary` CheckinSummary — チェックインの概況
    - `current_session_elapsed` integer, required — 最後のチェックインからの経過秒数 (現在のセッション)
    - `total_checkins` integer, required — 合計チェックイン回数
    - `total_times` integer, required — 合計時間 (秒)
    - `average_interval` integer, required — チェックイン間隔の平均値 (秒)
    - `median_interval` integer, required — チェックイン間隔の中央値 (秒)
    - `longest_interval` integer, required — チェックイン間隔の最大値 (秒)
    - `shortest_interval` integer, required — チェックイン間隔の最小値 (秒)

## Other responses

- `404` — 存在しないユーザー

## Changes

- **2025-05-24** `6c71d69e3250` — 1 info
  - added the required property `checkin_summary/median_interval` to the response with the `200` status
- **2025-04-05** `462d5bb516c9` — 1 breaking
  - removed the required property `checkin_summary/median_interval` from the response with the `200` status
- **2025-03-29** `49a9e6e530b2` — 1 info
  - added the required property `checkin_summary/median_interval` to the response with the `200` status
- **2021-07-28** `17b37b305538` — 1 info
  - endpoint added
- **2020-07-21** `be57ea2beb88` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/shikorism/apis/tissue-api/changes/v1/users/:name/get.md)

---

[API](https://skmtc.dev/shikorism/apis/tissue-api.md) · [All operations](https://skmtc.dev/shikorism/apis/tissue-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/shikorism/tissue-api/revisions/ba4127ea2b1b/schema)
