## Members of a circle **get** `/api/v1/circles/{id}/members` Returns the circle member list with username, role, XP, level, and join date. Ordered by role (owner first) then join date. ### Path Parameters - `id: string` ### Query Parameters - `limit: optional number` Max results (1–100, default 50) - `offset: optional number` Pagination offset (default 0) ### Returns - `members: optional array of object { id, image, joinedAt, 6 more }` - `id: optional string` - `image: optional string` - `joinedAt: optional string` - `level: optional number` - `name: optional string` - `role: optional "OWNER" or "ADMIN" or "MEMBER"` - `"OWNER"` - `"ADMIN"` - `"MEMBER"` - `streakDays: optional number` - `username: optional string` - `xp: optional number` ### Example ```http curl https://racks.cash/api/v1/circles/$ID/members ``` #### Response ```json { "limit": 0, "offset": 0, "total": 0, "members": [ { "id": "id", "image": "image", "joinedAt": "2019-12-27T18:11:19.117Z", "level": 0, "name": "name", "role": "OWNER", "streakDays": 0, "username": "username", "xp": 0 } ] } ```