---
title: "List properties for a user"
method: GET
path: "/users/{user_id}/properties"
tags: ["User Properties"]
---

# List properties for a user

`GET /users/{user_id}/properties`

Returns all stored properties for the specified user (up to 100 per user).
The response is always a single page — there is no cursor pagination, so
`has_more` is always `false` and `next_cursor` is always `null`.
Qonversion-defined keys are prefixed with `_q_` (e.g., `_q_email`).

## Path parameters

- `user_id` string, required

## Response `200`

A list of user properties.

- V4UserPropertyList
  - `object` 'list', required
  - `url` string, required
  - `data` V4UserPropertyItem[], required
    - `object` 'user_property', required
    - `key` string, required
    - `value` string, required
  - `has_more` boolean, required
  - `next_cursor` string, nullable

## Other responses

- `400` — Invalid request
- `401` — Unauthorized
- `404` — User not found
- `500` — Internal error
- `502` — Storage error
- `504` — Upstream timeout

---

[API](https://skmtc.net/qonversion/apis/qonversion-rest-api-v4.md) · [All operations](https://skmtc.net/qonversion/apis/qonversion-rest-api-v4/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/qonversion/qonversion-rest-api-v4/revisions/e3f72cf8951c/schema)
