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

# List users

> Lists the organization's end users, newest first. `id` fetches exactly one; `group_id` narrows to a group's members. `credential_providers` names the providers each user has stored credentials for — ids only, never the credentials themselves.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/users
openapi: 3.1.0
info:
  title: Sidenet API
  version: 1.0.0
  description: >-
    Sidenet HTTP endpoints exposed by the Sidenet Studio. All routes require an
    api key that can be generated through the studio in studio.sidenet.ai.
servers:
  - url: https://api.sidenet.ai
security:
  - bearerAuth: []
paths:
  /v1/users:
    get:
      tags:
        - Users & Groups
      summary: List users
      description: >-
        Lists the organization's end users, newest first. `id` fetches exactly
        one; `group_id` narrows to a group's members. `credential_providers`
        names the providers each user has stored credentials for — ids only,
        never the credentials themselves.
      parameters:
        - name: id
          in: query
          required: false
          schema:
            type: string
            example: user_4821
          description: Fetch exactly this user.
        - name: group_id
          in: query
          required: false
          schema:
            type: string
            example: grp_84f20c19
          description: Only users belonging to this group.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 50
            maximum: 200
      responses:
        '200':
          description: The users
          content:
            application/json:
              schema:
                type: object
                properties:
                  users:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        name:
                          type: string
                          nullable: true
                        group_id:
                          type: string
                          nullable: true
                          description: >-
                            The group the user belongs to (null for groups
                            created before stable ids existed).
                        credential_providers:
                          type: array
                          items:
                            type: string
                          description: Providers the user has stored credentials for.
                        created_at:
                          type: string
                          format: date-time
        '403':
          description: Not an API key
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Organization API key, generated in studio.sidenet.ai. Backend only —
        never in a browser.

````