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

# List Deleted Groups

> Returns groups deleted within the last five days, including empty groups, which can still be restored. Requires a paid plan and an organization-level token. Available even while recovery is disabled for the organization.

<Note>
  Unlike the v1 endpoints, this endpoint identifies the organization by its
  **UUID** — the `id` field from
  [Retrieve Organization](/api-reference/organizations/retrieve).
</Note>

<RequestExample>
  ```bash cURL theme={null}
  curl -L 'https://api.turso.tech/v3/organizations/{organizationId}/deleted-groups' \
    -H 'Authorization: Bearer TOKEN'
  ```
</RequestExample>


## OpenAPI

````yaml GET /v3/organizations/{organizationId}/deleted-groups
openapi: 3.0.1
info:
  title: Turso Platform API
  description: API description here
  license:
    name: MIT
  version: 0.1.0
servers:
  - url: https://api.turso.tech
    description: Turso's Platform API
security: []
paths:
  /v3/organizations/{organizationId}/deleted-groups:
    get:
      summary: List Deleted Groups
      description: >-
        Returns groups deleted within the last five days, including empty
        groups, which can still be restored. Requires a paid plan and an
        organization-level token. Available even while recovery is disabled for
        the organization.
      operationId: listDeletedGroups
      parameters:
        - $ref: '#/components/parameters/organizationId'
        - name: limit
          in: query
          schema:
            type: integer
            default: 100
          description: Page size, from 1 to 1000.
        - name: cursor
          in: query
          schema:
            type: string
          description: Opaque pagination cursor from the previous page's `pagination.next`.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  groups:
                    type: array
                    items:
                      $ref: '#/components/schemas/DeletedGroup'
                  pagination:
                    $ref: '#/components/schemas/Pagination'
        '403':
          description: The organization is on the free plan, or the token is group-scoped.
components:
  parameters:
    organizationId:
      name: organizationId
      in: path
      required: true
      schema:
        type: string
        format: uuid
      description: >-
        The UUID of the organization. Retrieve it with the Retrieve Organization
        endpoint (the `id` field).
  schemas:
    DeletedGroup:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
          description: The group UUID. Use it to restore the group.
        name:
          type: string
          description: The group name.
        deleted_at:
          type: string
          format: date-time
          description: When the group was deleted.
        cascade_databases:
          type: integer
          description: >-
            The number of member databases that restoring the group would bring
            back with it.
    Pagination:
      type: object
      properties:
        next:
          type: string
          description: >-
            Opaque cursor for the next page. Pass it back as the `cursor` query
            parameter. Absent on the last page.

````