> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nalhajery.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List All Profiles

> List all user profiles (admin only)

## Authentication

<ParamField header="Authorization" type="string" required>
  Bearer token: `Bearer <admin_token>`
</ParamField>

<Note>
  This endpoint requires admin privileges.
</Note>

### Example Request

```bash theme={null}
curl https://api.sari-platform.com/api/profiles/ \
  -H "Authorization: Bearer <admin_token>"
```

## Response

Returns an array of profile objects.

### Example Response

```json theme={null}
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "email": "user@example.com",
    "full_name": "John Doe",
    "company_name": "Acme Corp",
    "role": "client",
    "registration_status": "approved",
    "client_id": "client_abc123",
    "created_at": "2024-01-15T10:30:00Z"
  },
  {
    "id": "550e8400-e29b-41d4-a716-446655440001",
    "email": "pending@example.com",
    "full_name": "Jane Smith",
    "company_name": "New Startup",
    "role": "client",
    "registration_status": "pending",
    "client_id": null,
    "created_at": "2024-01-16T08:00:00Z"
  }
]
```

## Errors

| Status | Description              |
| ------ | ------------------------ |
| 401    | Invalid or expired token |
| 403    | Admin access required    |
