---
title: "List public user connections"
method: GET
path: "/users/{identifier}/connections"
tags: ["Players"]
---

# List public user connections

`GET /users/{identifier}/connections`

Returns a user's linked-account connections. Access requires a public profile or self: a non-self viewer of a limited or private profile gets 403, which is stricter than the stats, teams, and organizations endpoints that also allow limited profiles. Non-self responses include only the connections the user marked visible on their profile; self responses include all of them. isVerified is true when the connection's platform matches one of the user's linked OAuth providers, not the connection's self-reported flag. Not paginated: returns the full matching set as connections plus a count, in no guaranteed order. Banned users return 404. Requires users.profile:read.

## Path parameters

- `identifier` string, required — Username or Convex user ID.

## Response `200`

User connections.

- object — Envelope containing connections, count, and a response timestamp.
  - `connections` ApiUserConnection[], required
    - `id` string, required — Connection ID.
    - `platform` string, required — Connected platform.
    - `username` string, nullable
    - `url` string, nullable
    - `isPrimary` boolean
    - `isVerified` boolean
    - `connectedAt` string, nullable — ISO 8601 timestamp.
  - `count` integer, required
  - `timestamp` string, required — ISO 8601 timestamp.

## Other responses

- `401` — Missing or invalid API key.
- `403` — API key lacks the required permission.
- `404` — Resource not found.
- `429` — Rate limited.
- `500` — Internal server error.

---

[API](https://skmtc.net/teambattles/apis/teambattles-api.md) · [All operations](https://skmtc.net/teambattles/apis/teambattles-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/teambattles/teambattles-api/versions/2ffe8fb53b7d/schema)
