# Get user details

<mark style="color:blue;">`POST`</mark> `/users/{user_id}`

### **Overview**

Retrieves **detailed information** for a specific user identified by their `user_id`.

The response includes basic profile fields such as **name, email,** and **additional metadata** associated with the user.

**Typical use cases**

* Displaying user information in an admin dashboard
* Verifying user identity or account metadata
* Syncing user data across services

### Header

| Name                               | Value              |
| ---------------------------------- | ------------------ |
| Content-Type                       | `application/json` |
| Authorization <sup>(API Key)</sup> | `Bearer <API Key>` |

### Path

<table><thead><tr><th width="141.98046875">Name</th><th width="101.08203125">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>user_id</code></td><td>string</td><td>User identifier (user_id). <br>Optional on create — if not provided, a system-generated ID will be used<br><br><a href="user/user_id-and-klaim_id" class="button secondary">More description</a></td></tr></tbody></table>

### Response

{% tabs %}
{% tab title="200" %}

```json
{
    "message": "fetch resource successfully",
    "klaim_id": "1753306133860_A36dL",
    "user_id": "test2025silicon10000",
    "email": "test@email.com1011",
    "name": "tester",
    "credit_balance": 0,
    "created_at": 1753306133860,
    "acquisition_source": "api"
    "metadata": {
        "test": "field"
    }
}
```

***

### Attributes

<table><thead><tr><th width="209">Attribute</th><th width="118">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>acquisition_source</code></td><td>string</td><td>Indicates how the user was acquired <br><br><code>api</code> : API integration<br><code>promotion</code>: promotion<br><code>member_manual</code>: manual member creation (dashboard)</td></tr><tr><td><mark style="color:$primary;"><code>metadata</code></mark></td><td>object</td><td><p>A set of <strong>custom key-value pairs</strong> to be stored in the user’s profile.</p><p><br><a href="user/metadata" class="button secondary">Show child Attributes</a></p></td></tr></tbody></table>
{% endtab %}

{% tab title="404" %}
This HTTP status is returned when **no user profile entity is found** for the given userId.

```json
{
    "message": "Can not find user with the given user_id."
}
```

{% endtab %}
{% endtabs %}
