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

# List Alignment Projects

> List the caller's alignment projects as summary rows.

A list view renders an identifier, a name, a state and a timestamp, so that
is what this returns. The full record, documents, metrics and evaluation
details live on `GET /alignment-project/{id}`.



## OpenAPI

````yaml https://api.nugen.in/openapi-public.json get /api/v3/alignment-projects/list
openapi: 3.1.0
info:
  title: Nugen Intelligence API
  description: 'Nugen Intelligence : Powering Specialized Intelligence At Scale'
  version: 25.4.20
servers: []
security: []
paths:
  /api/v3/alignment-projects/list:
    get:
      tags:
        - Alignment Projects
      summary: List Alignment Projects
      description: >-
        List the caller's alignment projects as summary rows.


        A list view renders an identifier, a name, a state and a timestamp, so
        that

        is what this returns. The full record, documents, metrics and evaluation

        details live on `GET /alignment-project/{id}`.
      operationId: alignment_projects_list
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````