# Get All app’s user

<mark style="color:green;">`GET`</mark> `/users`

### **Overview**

**Retrieves a list of all users** associated with a specific application.

This endpoint is typically used by applications that need to manage or analyze their user base.

**Typical use cases**

* Listing all users registered through a specific app
* Performing bulk analysis or reporting
* Managing users in an admin dashboard

### Header

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

### Response

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

```json
{
    "message": "fetch resource successfully",
    "data": [
        {
            "klaim_id": "1753306133860_A36dL",
            "user_id": "1753306133860_A36dL",
            "email": "test@email.com",
            "name": "tester",
            "credit_balance": 0,
            "created_at": 1753306133860,
            "acquisition_source": "api"
            "metadata": {
                "test": "field"
            }
        },
    ],
    "lastKey": {
        "prefix_app_id": "string".
	"type_id": "string"
    }
}
```

***

### Attributes

<table><thead><tr><th width="224.671875">Attribute</th><th width="134">type</th><th>Description</th></tr></thead><tbody><tr><td><code>acquistion_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:purple;"><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="metadata" class="button secondary">More description</a></p></td></tr><tr><td><code>starting_after</code></td><td>Object</td><td>A cursor to use in pagination.<br><br><a href="../other-details/pagination" class="button secondary">Show child attributes</a></td></tr></tbody></table>
{% endtab %}
{% endtabs %}
