# Get users

Retrieve the list of users.

## Get users

<mark style="color:blue;">`GET`</mark> `https://api.signitic.app/users`

## Headers

| Name                                        | Type   | Description  |
| ------------------------------------------- | ------ | ------------ |
| x-api-key<mark style="color:red;">\*</mark> | String | Your API key |

## Success response

{% tabs %}
{% tab title="200: OK Return JSON users" %}

```json
{
  "success": true,
  "users": [
    {
      "email": "user1@signitic.fr",
      "enabled": 1
    },
    {
      "email": "user2@signitic.fr",
      "enabled": 2
    }
  ]
}
```

{% endtab %}
{% endtabs %}

## Error responses

| Status | Internal code | When                               |
| ------ | ------------- | ---------------------------------- |
| 401    | `99`          | The API key is missing or invalid. |

In the list response, `enabled` returns the API status value: `1` for active users and `2` for inactive users.
